State.Direction
enum State.Direction
Summary
Public functions |
|
|---|---|
java-static State.Direction! |
Returns the enum constant of this type with the specified name. |
java-static Array<State.Direction!>! |
values()Returns an array containing the constants of this enum type, in the order they're declared. |
Enum Values
BOTTOM
val State.Direction.BOTTOM: State.Direction
END
val State.Direction.END: State.Direction
LEFT
val State.Direction.LEFT: State.Direction
RIGHT
val State.Direction.RIGHT: State.Direction
START
val State.Direction.START: State.Direction
TOP
val State.Direction.TOP: State.Direction
Public functions
valueOf
java-static fun valueOf(name: String!): State.Direction!
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
| Returns | |
|---|---|
State.Direction! |
the enum constant with the specified name |
| Throws | |
|---|---|
java.lang.IllegalArgumentException |
if this enum type has no constant with the specified name |
values
java-static fun values(): Array<State.Direction!>!
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.
| Returns | |
|---|---|
Array<State.Direction!>! |
an array containing the constants of this enum type, in the order they're declared |