Value

class Value

A regex string, to be used with MATCHES or DOES_NOT_MATCH

Types

Link copied to clipboard
object Companion
Link copied to clipboard
interface Visitor<out T>

An interface that defines how to map each variant of Value to a value of type T.

Functions

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

An array of strings, to be used with IS_ONE_OF or IS_NOT_ONE_OF

Link copied to clipboard
fun asNumber(): Long

A number, to be used with IS_GREATER_THAN, IS_GREATER_THAN_OR_EQUAL_TO, IS_LESS_THAN, IS_LESS_THAN_OR_EQUAL_TO, IS_EQUAL_TO, or IS_NOT_EQUAL_TO

Link copied to clipboard

A regex string, to be used with MATCHES or DOES_NOT_MATCH

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

An array of strings, to be used with IS_ONE_OF or IS_NOT_ONE_OF

Link copied to clipboard
fun number(): Long?

A number, to be used with IS_GREATER_THAN, IS_GREATER_THAN_OR_EQUAL_TO, IS_LESS_THAN, IS_LESS_THAN_OR_EQUAL_TO, IS_EQUAL_TO, or IS_NOT_EQUAL_TO

Link copied to clipboard
fun regex(): String?

A regex string, to be used with MATCHES or DOES_NOT_MATCH

Link copied to clipboard
open override fun toString(): String