public interface InputFieldWriter
| Modifier and Type | Interface and Description |
|---|---|
static interface |
InputFieldWriter.ListItemWriter |
static interface |
InputFieldWriter.ListWriter |
| Modifier and Type | Method and Description |
|---|---|
void |
writeBoolean(String fieldName,
Boolean value) |
void |
writeCustom(String fieldName,
ScalarType scalarType,
Object value) |
void |
writeDouble(String fieldName,
Double value) |
void |
writeInt(String fieldName,
Integer value) |
void |
writeList(String fieldName,
InputFieldWriter.ListWriter listWriter) |
void |
writeLong(String fieldName,
Long value) |
void |
writeObject(String fieldName,
InputFieldMarshaller marshaller) |
void |
writeString(String fieldName,
String value) |
void writeString(@Nonnull String fieldName, String value) throws IOException
IOExceptionvoid writeInt(@Nonnull String fieldName, Integer value) throws IOException
IOExceptionvoid writeLong(@Nonnull String fieldName, Long value) throws IOException
IOExceptionvoid writeDouble(@Nonnull String fieldName, Double value) throws IOException
IOExceptionvoid writeBoolean(@Nonnull String fieldName, Boolean value) throws IOException
IOExceptionvoid writeCustom(@Nonnull String fieldName, ScalarType scalarType, Object value) throws IOException
IOExceptionvoid writeObject(@Nonnull String fieldName, InputFieldMarshaller marshaller) throws IOException
IOExceptionvoid writeList(@Nonnull String fieldName, InputFieldWriter.ListWriter listWriter) throws IOException
IOExceptionCopyright © 2018. All rights reserved.