Package com.graphdbapi
Enum PropertyType.PrimitiveDataType
- java.lang.Object
-
- java.lang.Enum<PropertyType.PrimitiveDataType>
-
- com.graphdbapi.PropertyType.PrimitiveDataType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PropertyType.PrimitiveDataType>
- Enclosing class:
- PropertyType
public static enum PropertyType.PrimitiveDataType extends java.lang.Enum<PropertyType.PrimitiveDataType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PropertyType.PrimitiveDataType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PropertyType.PrimitiveDataType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BYTE
public static final PropertyType.PrimitiveDataType BYTE
-
INT
public static final PropertyType.PrimitiveDataType INT
-
UINT
public static final PropertyType.PrimitiveDataType UINT
-
LONG
public static final PropertyType.PrimitiveDataType LONG
-
FLOAT
public static final PropertyType.PrimitiveDataType FLOAT
-
DOUBLE
public static final PropertyType.PrimitiveDataType DOUBLE
-
BIGDECIMAL
public static final PropertyType.PrimitiveDataType BIGDECIMAL
-
CHAR
public static final PropertyType.PrimitiveDataType CHAR
-
STRING
public static final PropertyType.PrimitiveDataType STRING
-
BOOLEAN
public static final PropertyType.PrimitiveDataType BOOLEAN
-
DATETIME
public static final PropertyType.PrimitiveDataType DATETIME
-
GEOGRAPHICPOINT
public static final PropertyType.PrimitiveDataType GEOGRAPHICPOINT
-
CARTESIANPOINT
public static final PropertyType.PrimitiveDataType CARTESIANPOINT
-
LIST
public static final PropertyType.PrimitiveDataType LIST
-
SET
public static final PropertyType.PrimitiveDataType SET
-
MAP
public static final PropertyType.PrimitiveDataType MAP
-
-
Method Detail
-
values
public static PropertyType.PrimitiveDataType[] 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 (PropertyType.PrimitiveDataType c : PropertyType.PrimitiveDataType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PropertyType.PrimitiveDataType 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
-
-