public static enum ValueWriter.ArrayType extends Enum<ValueWriter.ArrayType>
| Enum Constant and Description |
|---|
BOOLEAN |
BYTE |
CHAR |
DOUBLE |
FLOAT |
INT |
LONG |
SHORT |
STRING |
| Modifier and Type | Method and Description |
|---|---|
static ValueWriter.ArrayType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValueWriter.ArrayType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValueWriter.ArrayType BYTE
public static final ValueWriter.ArrayType SHORT
public static final ValueWriter.ArrayType INT
public static final ValueWriter.ArrayType LONG
public static final ValueWriter.ArrayType FLOAT
public static final ValueWriter.ArrayType DOUBLE
public static final ValueWriter.ArrayType BOOLEAN
public static final ValueWriter.ArrayType STRING
public static final ValueWriter.ArrayType CHAR
public static ValueWriter.ArrayType[] values()
for (ValueWriter.ArrayType c : ValueWriter.ArrayType.values()) System.out.println(c);
public static ValueWriter.ArrayType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2002–2017 The Neo4j Graph Database Project. All rights reserved.