BuiltInColumnTypeConverters.State



Control flags for built-in converters.

Summary

Enum Values

DISABLED

Room cannot use the built-in converter.

ENABLED

Room can use the built-in converter.

INHERITED

Inherits value from a higher scope.

Public functions

BuiltInColumnTypeConverters.State
valueOf(value: String)

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

Cmn
Array<BuiltInColumnTypeConverters.State>

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

Cmn

Public properties

EnumEntries<BuiltInColumnTypeConverters.State>

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

Cmn

Enum Values

DISABLED

val BuiltInColumnTypeConverters.State.DISABLEDBuiltInColumnTypeConverters.State

Room cannot use the built-in converter.

ENABLED

val BuiltInColumnTypeConverters.State.ENABLEDBuiltInColumnTypeConverters.State

Room can use the built-in converter.

INHERITED

val BuiltInColumnTypeConverters.State.INHERITEDBuiltInColumnTypeConverters.State

Inherits value from a higher scope. See ColumnTypeConverters documentation for scoping rules. Defaults to ENABLED if never set.

Public functions

valueOf

fun valueOf(value: String): BuiltInColumnTypeConverters.State

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<BuiltInColumnTypeConverters.State>

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<BuiltInColumnTypeConverters.State>

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.