LoadingState
enum LoadingState : Enum<LoadingState>
Contains the different loading states a Source can be in.
Entries
| Unloaded | Unloaded The source is unloaded. |
| Loading | Loading The source is currently loading. |
| Loaded | Loaded The source is loaded. |
Properties
| Name | Summary |
|---|---|
| entries | val entries: EnumEntries<LoadingState> Returns a representation of an immutable list of all enum entries, in the order they're declared. |
Functions
| Name | Summary |
|---|---|
| valueOf | fun valueOf(value: String): LoadingState 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.) |
| values | fun values(): Array<LoadingState> Returns an array containing the constants of this enum type, in the order they're declared. |