public enum BasicValueType extends java.lang.Enum<BasicValueType> implements ValueType
| Enum Constant and Description |
|---|
Bigint |
Blob |
Boolean |
Date |
Decimal |
Double |
Duration |
Float |
Inet |
Int |
Linestring |
Point |
Polygon |
Smallint |
Text |
Time |
Timestamp |
Uuid |
Varint |
| Modifier and Type | Method and Description |
|---|---|
static BasicValueType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BasicValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BasicValueType Boolean
public static final BasicValueType Smallint
public static final BasicValueType Int
public static final BasicValueType Bigint
public static final BasicValueType Float
public static final BasicValueType Double
public static final BasicValueType Decimal
public static final BasicValueType Varint
public static final BasicValueType Timestamp
public static final BasicValueType Date
public static final BasicValueType Time
public static final BasicValueType Duration
public static final BasicValueType Text
public static final BasicValueType Uuid
public static final BasicValueType Inet
public static final BasicValueType Blob
public static final BasicValueType Point
public static final BasicValueType Linestring
public static final BasicValueType Polygon
public static BasicValueType[] values()
for (BasicValueType c : BasicValueType.values()) System.out.println(c);
public static BasicValueType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null