Module datarush.library
Package com.pervasive.datarush.schema
Enum Class SchemaBuilder.SchemaFieldType
java.lang.Object
java.lang.Enum<SchemaBuilder.SchemaFieldType>
com.pervasive.datarush.schema.SchemaBuilder.SchemaFieldType
- All Implemented Interfaces:
Serializable,Comparable<SchemaBuilder.SchemaFieldType>,java.lang.constant.Constable
- Enclosing class:
- SchemaBuilder
Enumeration of schema field types
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe field is a binary field, created bySchemaBuilder.BINARY(String);The field is a boolean field, created bySchemaBuilder.BOOLEAN(String);The field is a char field.The field is a boolean field, created bySchemaBuilder.DATE(String)The field is a double field, created bySchemaBuilder.DOUBLE(String)The field is a duration field, created bySchemaBuilder.DURATION(java.lang.String)The field is a float field, created bySchemaBuilder.FLOAT(java.lang.String)The field is an int field, created bySchemaBuilder.INT(java.lang.String)The field is an ipv4address field, created bySchemaBuilder.IP4ADDRESS(java.lang.String)The field is an ipv6address field, created bySchemBuilder#IP6ADDRESSThe field is an long field, created bySchemaBuilder.LONG(java.lang.String)The field is a money field, created bySchemaBuilder.MONEY(java.lang.String)The field is a numeric field, created bySchemaBuilder.NUMERIC(java.lang.String)The field is an object field, created bySchemaBuilder.OBJECT(java.lang.String)The field is a period field, created bySchemaBuilder.PERIOD(java.lang.String)The field is a string field, created bySchemaBuilder.STRING(java.lang.String)The field is a timeofday field, created bySchemaBuilder.TIMEOFDAY(java.lang.String)The field is a timestamp field, created bySchemaBuilder.TIMESTAMP(java.lang.String) -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static SchemaBuilder.SchemaFieldType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BINARY
The field is a binary field, created bySchemaBuilder.BINARY(String); -
BOOLEAN
The field is a boolean field, created bySchemaBuilder.BOOLEAN(String); -
CHAR
The field is a char field. -
DATE
The field is a boolean field, created bySchemaBuilder.DATE(String) -
DOUBLE
The field is a double field, created bySchemaBuilder.DOUBLE(String) -
DURATION
The field is a duration field, created bySchemaBuilder.DURATION(java.lang.String) -
FLOAT
The field is a float field, created bySchemaBuilder.FLOAT(java.lang.String) -
INT
The field is an int field, created bySchemaBuilder.INT(java.lang.String) -
IP4ADDRESS
The field is an ipv4address field, created bySchemaBuilder.IP4ADDRESS(java.lang.String) -
IP6ADDRESS
The field is an ipv6address field, created bySchemBuilder#IP6ADDRESS -
LONG
The field is an long field, created bySchemaBuilder.LONG(java.lang.String) -
MONEY
The field is a money field, created bySchemaBuilder.MONEY(java.lang.String) -
NUMERIC
The field is a numeric field, created bySchemaBuilder.NUMERIC(java.lang.String) -
PERIOD
The field is a period field, created bySchemaBuilder.PERIOD(java.lang.String) -
STRING
The field is a string field, created bySchemaBuilder.STRING(java.lang.String) -
TIMESTAMP
The field is a timestamp field, created bySchemaBuilder.TIMESTAMP(java.lang.String) -
TIMEOFDAY
The field is a timeofday field, created bySchemaBuilder.TIMEOFDAY(java.lang.String) -
OBJECT
The field is an object field, created bySchemaBuilder.OBJECT(java.lang.String)
-
-
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
-