PropertyValue

Properties for Style

open class PropertyValue<T>

Parameters

propertyName

the property name

propertyValue

the property value

Types

Companion
Link copied to clipboard

Static variables and methods.

object Companion

Functions

equals
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
getValue
Link copied to clipboard

Get the value of the property.

fun getValue(): T?
hashCode
Link copied to clipboard
open override fun hashCode(): Int
toString
Link copied to clipboard

Get the string representation of a property value.

open override fun toString(): String

Properties

colorInt
Link copied to clipboard

Get the color int value of the property if the value is a color.

val colorInt: Int?
isExpression
Link copied to clipboard

Returns if this is a expression.

val isExpression: Boolean
isTransition
Link copied to clipboard

Returns if this is a transition.

val isTransition: Boolean
isValue
Link copied to clipboard

Returns if this is a constant value.

val isValue: Boolean
propertyName
Link copied to clipboard

the property name

val propertyName: String
propertyValue
Link copied to clipboard

the property value

val propertyValue: T
value
Link copied to clipboard

The Value representation of the property.

val value: Value