csc.DirectionValue

class csc.DirectionValue

DirectionValue enumeration. Represents a DirectionValue enumeration for defining In, Out, and Unknown directions.

  • In : <DirectionValue.In: 0>

  • Out : <DirectionValue.Out: 1>

  • Unknown : <DirectionValue.Unknown: 2>

1import csc
2print(csc.DirectionValue.In)
3print(csc.DirectionValue.In.value)

Members:

In

Out

Unknown

__init__(self: csc.DirectionValue, value: int) None

Methods

__init__(self, value)

Attributes

In

Out

Unknown

name

value

In = <DirectionValue.In: 0>
Out = <DirectionValue.Out: 1>
Unknown = <DirectionValue.Unknown: 2>
__annotations__ = {}
__eq__(self: object, other: object) bool
__getstate__(self: object) int
__hash__(self: object) int
__index__(self: csc.DirectionValue) int
__init__(self: csc.DirectionValue, value: int) None
__int__(self: csc.DirectionValue) int
__members__ = {'In': <DirectionValue.In: 0>, 'Out': <DirectionValue.Out: 1>, 'Unknown': <DirectionValue.Unknown: 2>}
__module__ = 'csc'
__ne__(self: object, other: object) bool
__repr__(self: object) str
__setstate__(self: csc.DirectionValue, state: int) None
__str__(self: object) str
property name
property value