Package ai.velr
Enum Class VelrValueType
- All Implemented Interfaces:
Serializable,Comparable<VelrValueType>,Constable
Public Velr property value kind.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionBoolean value.Binary value.Calendar date value.Double-precision floating-point value.Duration value.Geography value.Geometry value.64-bit integer value.List value.Local date-time value without a time zone.Local time value without a time zone.Velr null value.Point value.UTF-8 string value.Vector value.Date-time value with zone information.Time value with zone information. -
Method Summary
Modifier and TypeMethodDescriptionstatic VelrValueTypeReturns the enum constant of this class with the specified name.static VelrValueType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NULL
Velr null value. -
BOOL
Boolean value. -
INT64
64-bit integer value. -
DOUBLE
Double-precision floating-point value. -
STRING
UTF-8 string value. -
DATE
Calendar date value. -
LOCAL_TIME
Local time value without a time zone. -
ZONED_TIME
Time value with zone information. -
LOCAL_DATETIME
Local date-time value without a time zone. -
ZONED_DATETIME
Date-time value with zone information. -
DURATION
Duration value. -
POINT
Point value. -
GEOMETRY
Geometry value. -
GEOGRAPHY
Geography value. -
LIST
List value. -
VECTOR
Vector value. -
BYTES
Binary value.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-