OnboardingNextActivity


enum OnboardingNextActivity : Enum


The possible values for the next activity after the onboarding activity. When a Contact Keys client requests an intent to the onboarding activity, it can specify the next activity to show after the onboarding activity using any of those values.

The str parameter is the string that will be used for the Contact Keys client IPCs that return the intent.

Summary

Public companion functions

OnboardingNextActivity

Returns the OnboardingNextActivity corresponding to the given string.

Public functions

OnboardingNextActivity
valueOf(value: String)

Returns the enum constant of this type with the specified name.

Array<OnboardingNextActivity>

Returns an array containing the constants of this enum type, in the order they're declared.

Public properties

EnumEntries<OnboardingNextActivity>

Returns a representation of an immutable list of all enum entries, in the order they're declared.

String

Public companion functions

fromString

fun fromString(str: String): OnboardingNextActivity

Returns the OnboardingNextActivity corresponding to the given string.

Public functions

valueOf

fun valueOf(value: String): OnboardingNextActivity

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.)

Throws
kotlin.IllegalArgumentException

if this enum type has no constant with the specified name

values

fun values(): Array<OnboardingNextActivity>

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.

Public properties

entries

val entriesEnumEntries<OnboardingNextActivity>

Returns a representation of an immutable list of all enum entries, in the order they're declared.

This method may be used to iterate over the enum entries.

str

val strString