Package oracle.kv.table
Enum FieldDef.Type
- java.lang.Object
-
- java.lang.Enum<FieldDef.Type>
-
- oracle.kv.table.FieldDef.Type
-
- All Implemented Interfaces:
Serializable,Comparable<FieldDef.Type>,oracle.kv.impl.util.FastExternalizable
- Enclosing interface:
- FieldDef
public static enum FieldDef.Type extends Enum<FieldDef.Type> implements oracle.kv.impl.util.FastExternalizable
The type of a field definition.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FieldDef.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static FieldDef.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ARRAY
public static final FieldDef.Type ARRAY
-
BINARY
public static final FieldDef.Type BINARY
-
BOOLEAN
public static final FieldDef.Type BOOLEAN
-
DOUBLE
public static final FieldDef.Type DOUBLE
-
ENUM
public static final FieldDef.Type ENUM
-
FIXED_BINARY
public static final FieldDef.Type FIXED_BINARY
-
FLOAT
public static final FieldDef.Type FLOAT
-
INTEGER
public static final FieldDef.Type INTEGER
-
LONG
public static final FieldDef.Type LONG
-
MAP
public static final FieldDef.Type MAP
-
RECORD
public static final FieldDef.Type RECORD
-
STRING
public static final FieldDef.Type STRING
-
ANY
public static final FieldDef.Type ANY
-
ANY_RECORD
public static final FieldDef.Type ANY_RECORD
-
ANY_ATOMIC
public static final FieldDef.Type ANY_ATOMIC
-
EMPTY
public static final FieldDef.Type EMPTY
-
JSON
public static final FieldDef.Type JSON
-
TIMESTAMP
public static final FieldDef.Type TIMESTAMP
-
NUMBER
public static final FieldDef.Type NUMBER
-
ANY_JSON_ATOMIC
public static final FieldDef.Type ANY_JSON_ATOMIC
-
GEOMETRY
public static final FieldDef.Type GEOMETRY
-
POINT
public static final FieldDef.Type POINT
-
-
Method Detail
-
values
public static FieldDef.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FieldDef.Type c : FieldDef.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FieldDef.Type valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
-