Package deltix.qsrv.hf.tickdb.schema
Enum SchemaConverter.DataTypeIndex
- java.lang.Object
-
- java.lang.Enum<SchemaConverter.DataTypeIndex>
-
- deltix.qsrv.hf.tickdb.schema.SchemaConverter.DataTypeIndex
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SchemaConverter.DataTypeIndex>
- Enclosing class:
- SchemaConverter
public static enum SchemaConverter.DataTypeIndex extends java.lang.Enum<SchemaConverter.DataTypeIndex>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SchemaConverter.DataTypeIndex
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SchemaConverter.DataTypeIndex[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Boolean
public static final SchemaConverter.DataTypeIndex Boolean
-
Int
public static final SchemaConverter.DataTypeIndex Int
-
Long
public static final SchemaConverter.DataTypeIndex Long
-
Float
public static final SchemaConverter.DataTypeIndex Float
-
Double
public static final SchemaConverter.DataTypeIndex Double
-
Enum
public static final SchemaConverter.DataTypeIndex Enum
-
String
public static final SchemaConverter.DataTypeIndex String
-
Array
public static final SchemaConverter.DataTypeIndex Array
-
Object
public static final SchemaConverter.DataTypeIndex Object
-
Binary
public static final SchemaConverter.DataTypeIndex Binary
-
-
Method Detail
-
values
public static SchemaConverter.DataTypeIndex[] 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 (SchemaConverter.DataTypeIndex c : SchemaConverter.DataTypeIndex.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SchemaConverter.DataTypeIndex valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-