//sdk/com.adobe.express.embedsdk/AdoptionStrategy
enum AdoptionStrategy : Enum<AdoptionStrategy>
Defines the strategy for performing the adoption.
| NO_ADOPTION | NO_ADOPTION Actions are incompatible, create separate containers. Example: preload route to edit-image route (old warmup mechanism for caching resources). |
| MESSAGE_ADOPTION | MESSAGE_ADOPTION Message based adoption strategy, wherein we send a message to existing WebView to continue loading from current state. E.g., Send SWITCH_EMBED_ACTION message to existing WebView to continue loading from current state. |
| Name | Summary |
|---|---|
| entries | val entries: EnumEntries<AdoptionStrategy> Returns a representation of an immutable list of all enum entries, in the order they’re declared. |
| Name | Summary |
|---|---|
| valueOf | fun valueOf(value: String): AdoptionStrategy 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<AdoptionStrategy> Returns an array containing the constants of this enum type, in the order they’re declared. |