Enabler
7 items
- All (7)
- Functions (2)
- Properties (4)
All
7valentries
val entries: EnumEntries
Returns a representation of an immutable list of all enum entries, in the order they're declared.
valname
expect val name: String
valordinal
expect val ordinal: Int
valvalue
val value: Int
funvalueOf
fun valueOf(value: String): Enabler
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.)
funvalues
fun values(): Array
Returns an array containing the constants of this enum type, in the order they're declared.
DEPTH_TEST
Functions
2funvalueOf
fun valueOf(value: String): Enabler
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.)
funvalues
fun values(): Array
Returns an array containing the constants of this enum type, in the order they're declared.