public enum PackType extends Enum<PackType>
STRUCT.| Enum Constant and Description |
|---|
BOOLEAN
You know what this is
|
BYTES
Binary data
|
END_OF_STREAM
A marker that denotes the end of a streamed value
|
FLOAT
64-bit floating point number
|
INTEGER
64-bit signed integer
|
LIST
Sequence of zero or more values
|
MAP
Sequence of zero or more key/value pairs, keys are unique
|
NULL
The absence of a value
|
RESERVED
Undefined type, reserved for future use
|
STRING
Unicode string
|
STRUCT
A composite data structure, made up of zero or more packstream values and a type signature.
|
| Modifier and Type | Method and Description |
|---|---|
static PackType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PackType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PackType NULL
public static final PackType BOOLEAN
public static final PackType INTEGER
public static final PackType FLOAT
public static final PackType BYTES
public static final PackType STRING
public static final PackType LIST
public static final PackType MAP
public static final PackType STRUCT
public static final PackType END_OF_STREAM
public static final PackType RESERVED
public static PackType[] values()
for (PackType c : PackType.values()) System.out.println(c);
public static PackType 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.