{% setvar book_path %}/reference/androidx/_book.yaml{% endsetvar %} {% include "_shared/_reference-head-tags.html" %}

TextToolbarStatus

public enum TextToolbarStatus extends Enum

java.lang.Object
   ↳ kotlin.Enum
     ↳ androidx.compose.ui.platform.TextToolbarStatus

Status of the TextToolbar.

Summary

Enum Values

Hidden

The TextToolbar is hidden.

Shown

The TextToolbar is shown.

Public methods

final @NonNull EnumEntries<@NonNull TextToolbarStatus>

Status of the TextToolbar.

final @NonNull TextToolbarStatus

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

final @NonNull TextToolbarStatus[]

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

Enum Values

Hidden

TextToolbarStatus TextToolbarStatus.Hidden

The TextToolbar is hidden.

Shown

TextToolbarStatus TextToolbarStatus.Shown

The TextToolbar is shown.

Public methods

getEntries

public final @NonNull EnumEntries<@NonNull TextToolbarStatusgetEntries()

Status of the TextToolbar.

valueOf

public final @NonNull TextToolbarStatus 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 TextToolbarStatus[] 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.