AttributeValueList

sealed class AttributeValueList

Use the AttributeValueList to filter by string or integer values.

Inheritors

Types

Link copied to clipboard
data class IntegerValues(val value: List<Int>) : AttributeValueList

The list of integer values that the filter matches.

Link copied to clipboard
Link copied to clipboard
data class StringValues(val value: List<String>) : AttributeValueList

The list of string values that the filter matches.

Functions

Link copied to clipboard

Casts this AttributeValueList as a IntegerValues and retrieves its List value. Throws an exception if the AttributeValueList is not a IntegerValues.

Link copied to clipboard

Casts this AttributeValueList as a IntegerValues and retrieves its List value. Returns null if the AttributeValueList is not a IntegerValues.

Link copied to clipboard

Casts this AttributeValueList as a StringValues and retrieves its List value. Throws an exception if the AttributeValueList is not a StringValues.

Link copied to clipboard

Casts this AttributeValueList as a StringValues and retrieves its List value. Returns null if the AttributeValueList is not a StringValues.