//sdk/com.adobe.express.embedsdk/ContainerAdoptionState
enum ContainerAdoptionState : Enum<ContainerAdoptionState>
Represents the current state of a container in the adoption lifecycle.
| CREATED | CREATED Container just created. |
| LOADING | LOADING Loading content. |
| LOADED | LOADED Content loaded successfully. |
| VISIBLE | VISIBLE Container visible to user. |
| HIDDEN | HIDDEN Container hidden but alive. |
| ADOPTABLE | ADOPTABLE Container can be adopted. |
| ADOPTED | ADOPTED Container has been adopted. |
| DESTROYED | DESTROYED Container destroyed. |
| Name | Summary |
|---|---|
| entries | val entries: EnumEntries<ContainerAdoptionState> Returns a representation of an immutable list of all enum entries, in the order they’re declared. |
| Name | Summary |
|---|---|
| valueOf | fun valueOf(value: String): ContainerAdoptionState 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<ContainerAdoptionState> Returns an array containing the constants of this enum type, in the order they’re declared. |