FieldPosition

sealed class FieldPosition

Describes the field position.

Inheritors

Types

Link copied to clipboard
data class Below(val value: String) : FieldPosition

The field position is below the field specified by the string.

Link copied to clipboard
data class Fixed(val value: FixedPosition) : FieldPosition

The field position is fixed and doesn't change in relation to other fields.

Link copied to clipboard
data class RightOf(val value: String) : FieldPosition

The field position is to the right of the field specified by the string.

Link copied to clipboard

Functions

Link copied to clipboard

Casts this FieldPosition as a Below and retrieves its kotlin.String value. Throws an exception if the FieldPosition is not a Below.

Link copied to clipboard

Casts this FieldPosition as a Below and retrieves its kotlin.String value. Returns null if the FieldPosition is not a Below.

Link copied to clipboard

Casts this FieldPosition as a Fixed and retrieves its aws.sdk.kotlin.services.amplifyuibuilder.model.FixedPosition value. Throws an exception if the FieldPosition is not a Fixed.

Link copied to clipboard

Casts this FieldPosition as a Fixed and retrieves its aws.sdk.kotlin.services.amplifyuibuilder.model.FixedPosition value. Returns null if the FieldPosition is not a Fixed.

Link copied to clipboard

Casts this FieldPosition as a RightOf and retrieves its kotlin.String value. Throws an exception if the FieldPosition is not a RightOf.

Link copied to clipboard

Casts this FieldPosition as a RightOf and retrieves its kotlin.String value. Returns null if the FieldPosition is not a RightOf.