Package org.neo4j.gds.api.nodeproperties
Enum ValueType
- java.lang.Object
-
- java.lang.Enum<ValueType>
-
- org.neo4j.gds.api.nodeproperties.ValueType
-
-
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 java.lang.StringcsvName()abstract java.lang.StringcsvValue(java.lang.Object value)abstract java.lang.StringcypherName()abstract DefaultValuefallbackValue()static ValueTypefromCsvName(java.lang.String csvName)java.lang.ObjectfromCsvValue(java.lang.String csvValue)abstract java.lang.ObjectfromCsvValue(java.lang.String csvValue, DefaultValue fallbackValue)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()
-
csvValue
public abstract java.lang.String csvValue(java.lang.Object value)
-
fromCsvValue
public abstract java.lang.Object fromCsvValue(java.lang.String csvValue, DefaultValue fallbackValue)
-
fallbackValue
public abstract DefaultValue fallbackValue()
-
fromCsvValue
public java.lang.Object fromCsvValue(java.lang.String csvValue)
-
fromCsvName
public static ValueType fromCsvName(java.lang.String csvName)
-
-