Package org.neo4j.gds.api.nodeproperties
Enum ValueType
- java.lang.Object
-
- java.lang.Enum<ValueType>
-
- org.neo4j.gds.api.nodeproperties.ValueType
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceValueType.Visitor<RESULT>
-
Enum Constant Summary
Enum Constants Enum Constant Description DOUBLEDOUBLE_ARRAYFLOAT_ARRAYLONGLONG_ARRAYSTRINGUNKNOWN
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract <RESULT> RESULTaccept(ValueType.Visitor<RESULT> visitor)abstract java.lang.StringcsvName()abstract java.lang.StringcypherName()abstract DefaultValuefallbackValue()static ValueTypefromCsvName(java.lang.String csvName)static ValueTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ValueType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LONG
public static final ValueType LONG
-
DOUBLE
public static final ValueType DOUBLE
-
STRING
public static final ValueType STRING
-
DOUBLE_ARRAY
public static final ValueType DOUBLE_ARRAY
-
FLOAT_ARRAY
public static final ValueType FLOAT_ARRAY
-
LONG_ARRAY
public static final ValueType LONG_ARRAY
-
UNKNOWN
public static final ValueType UNKNOWN
-
-
Method Detail
-
values
public static ValueType[] 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 (ValueType c : ValueType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ValueType 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
-
cypherName
public abstract java.lang.String cypherName()
-
csvName
public abstract java.lang.String csvName()
-
fallbackValue
public abstract DefaultValue fallbackValue()
-
accept
public abstract <RESULT> RESULT accept(ValueType.Visitor<RESULT> visitor)
-
fromCsvName
public static ValueType fromCsvName(java.lang.String csvName)
-
-