OnboardingNextActivity


public enum OnboardingNextActivity extends 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

Nested types

Companion object for OnboardingNextActivity.

Public methods

final @NonNull EnumEntries<@NonNull OnboardingNextActivity>

The possible values for the next activity after the onboarding activity.

final @NonNull String
final @NonNull OnboardingNextActivity

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

final @NonNull OnboardingNextActivity[]

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

Public methods

getEntries

public final @NonNull EnumEntries<@NonNull OnboardingNextActivitygetEntries()

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.

getStr

public final @NonNull String getStr()

valueOf

public final @NonNull OnboardingNextActivity valueOf(@NonNull String value)

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

public final @NonNull OnboardingNextActivity[] values()

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.