E - type of Exception thrown from writer methods.public interface ValueWriter<E extends Exception>
Has functionality to write all supported primitives, as well as arrays and different representations of Strings.
| Modifier and Type | Interface and Description |
|---|---|
static class |
ValueWriter.Adapter<E extends Exception> |
static class |
ValueWriter.ArrayType |
| Modifier and Type | Method and Description |
|---|---|
void |
beginArray(int size,
ValueWriter.ArrayType arrayType) |
void |
endArray() |
void |
writeBoolean(boolean value) |
void |
writeByteArray(byte[] value) |
void |
writeFloatingPoint(double value) |
void |
writeFloatingPoint(float value) |
void |
writeInteger(byte value) |
void |
writeInteger(int value) |
void |
writeInteger(long value) |
void |
writeInteger(short value) |
void |
writeNull() |
void |
writeString(char value) |
default void |
writeString(char[] value) |
void |
writeString(char[] value,
int offset,
int length) |
void |
writeString(String value) |
default void |
writeUTF8(byte[] bytes,
int offset,
int length) |
void beginArray(int size,
ValueWriter.ArrayType arrayType)
throws E extends Exception
Copyright © 2002–2017 The Neo4j Graph Database Project. All rights reserved.