Enum Class PropertyType
- All Implemented Interfaces:
- Serializable, Comparable<PropertyType>, Constable
Cypher types applicable as property types in constraints.
See Constraint Syntax.
- Since:
- 2.5.0
- Author:
- Michael J. Simons
- 
Nested Class SummaryNested classes/interfaces inherited from class EnumEnum.EnumDesc<E>
- 
Enum Constant SummaryEnum ConstantsEnum ConstantDescriptionConstant for boolean properties.Constant for date properties.Constant for duration properties.Constant for float or double properties.Constant for integer or long properties.Constant for local datetime properties.Constant for local time properties.Constant for point properties.Constant for string properties.Constant for zone datetime properties.Constant for zoned time properties.
- 
Method SummaryModifier and TypeMethodDescriptionstatic PropertyTypeReturns the enum constant of this class with the specified name.static PropertyType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
BOOLEANConstant for boolean properties.
- 
STRINGConstant for string properties.
- 
INTEGERConstant for integer or long properties.
- 
FLOATConstant for float or double properties.
- 
DATEConstant for date properties.
- 
LOCAL_TIMEConstant for local time properties.
- 
ZONED_TIMEConstant for zoned time properties.
- 
LOCAL_DATETIMEConstant for local datetime properties.
- 
ZONED_DATETIMEConstant for zone datetime properties.
- 
DURATIONConstant for duration properties.
- 
POINTConstant for point properties.
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
 
-