Side
type (joe.win
)
A Side
of a rectangular region.
- Side.values() → List
- side.name() → String
- side.ordinal() → Number
- side.toString() → String
Constants
Side.BOTTOM
Side.LEFT
Side.RIGHT
Side.TOP
Static Methods
Side.values()
Side.values() → List
Returns a list of the enumerated type's values.
Side Initializer
Side(value) → Side
Attempts to convert the value to an enum constant for this enum. The value may be:
- One of the enum's constants.
- A string that matches the name of a constant, disregarding case.
- A keyword whose name matches the name of a constant, disregarding case.
Methods
side.name()
side.name() → String
Returns the name of the enumerated constant.
side.ordinal()
side.ordinal() → Number
Returns the index of the enumerated constant
in the values()
list.
side.toString()
side.toString() → String
Returns the name of the enumerated constant.