Skip navigation links
C D E F G H I J M N P R S T U W 

C

clear() - Method in class com.dyuproject.protostuff.JsonXOutput
 
com.dyuproject.protostuff - package com.dyuproject.protostuff
 
currentSchema() - Method in class com.dyuproject.protostuff.JsonXOutput
Returns the current schema being used.

D

DEFAULT_JSON_FACTORY - Static variable in class com.dyuproject.protostuff.JsonIOUtil
The default json factory for creating json parsers and generators.
DEFAULT_SMILE_FACTORY - Static variable in class com.dyuproject.protostuff.SmileIOUtil
The default smile factory for creating smile parsers and generators.

E

ENUMS_BY_NAME - Static variable in class com.dyuproject.protostuff.JsonFlags
 

F

Factory() - Constructor for class com.dyuproject.protostuff.JsonIOUtil.Factory
 
Factory() - Constructor for class com.dyuproject.protostuff.SmileIOUtil.Factory
 

G

getGeneratorFeatures() - Method in class com.dyuproject.protostuff.JsonIOUtil.Factory
Returns the generator feature flags.
getGeneratorFeatures() - Method in class com.dyuproject.protostuff.SmileIOUtil.Factory
Returns the generator feature flags.
getLastNumber() - Method in class com.dyuproject.protostuff.JsonInput
Gets the last field number read.
getLastNumber() - Method in class com.dyuproject.protostuff.JsonOutput
Gets the last field number written.
getLastNumber() - Method in class com.dyuproject.protostuff.JsonXByteArrayInput
Gets the last field number read.
getLastNumber() - Method in class com.dyuproject.protostuff.JsonXOutput
Gets the last field number written.
getParserFeatures() - Method in class com.dyuproject.protostuff.JsonIOUtil.Factory
Returns the parser feature flags.
getParserFeatures() - Method in class com.dyuproject.protostuff.SmileIOUtil.Factory
Returns the parser feature flags.
getRootByteSymbols() - Method in class com.dyuproject.protostuff.JsonIOUtil.Factory
Needed by jackson's internal utf8 strema parser.
getRootByteSymbols() - Method in class com.dyuproject.protostuff.SmileIOUtil.Factory
Needed by jackson's internal utf8 stream parser.
getSmileGeneratorFeatures() - Method in class com.dyuproject.protostuff.SmileIOUtil.Factory
Returns the smile-specific generator feature flags.
getSmileParserFeatures() - Method in class com.dyuproject.protostuff.SmileIOUtil.Factory
Returns the smile-specific parser feature flags.

H

handleUnknownField(int, Schema<T>) - Method in class com.dyuproject.protostuff.JsonInput
 
handleUnknownField(int, Schema<T>) - Method in class com.dyuproject.protostuff.JsonXByteArrayInput
 

I

isEnumsByName() - Method in class com.dyuproject.protostuff.JsonOutput
Returns whether the outgoing enum values are written using their name instead of number.
isEnumsByName() - Method in class com.dyuproject.protostuff.JsonXOutput
Returns whether the outgoing enum values are written using their name instead of number.
isLastRepeated() - Method in class com.dyuproject.protostuff.JsonInput
Returns true if the last read field was a repeated field.
isLastRepeated() - Method in class com.dyuproject.protostuff.JsonOutput
Returns true if the last written field was a repeated field.
isLastRepeated() - Method in class com.dyuproject.protostuff.JsonXByteArrayInput
Returns true if the last read field was a repeated field.
isLastRepeated() - Method in class com.dyuproject.protostuff.JsonXOutput
Returns true if the last written field was a repeated field.
isNumeric() - Method in class com.dyuproject.protostuff.JsonInput
Returns whether the incoming messages' field names are numeric.
isNumeric() - Method in class com.dyuproject.protostuff.JsonOutput
Returns whether the outgoing messages' field names are numeric.
isNumeric() - Method in class com.dyuproject.protostuff.JsonXOutput
Returns whether the outgoing messages' field names are numeric.

J

JsonFlags - Class in com.dyuproject.protostuff
Flags for JSON IO
JsonFlags() - Constructor for class com.dyuproject.protostuff.JsonFlags
 
JsonInput - Class in com.dyuproject.protostuff
An input used for reading data with json format.
JsonInput(JsonParser) - Constructor for class com.dyuproject.protostuff.JsonInput
 
JsonInput(JsonParser, boolean) - Constructor for class com.dyuproject.protostuff.JsonInput
 
JsonInputException - Exception in com.dyuproject.protostuff
Thrown when a json-encoded protobuf message being parsed is invalid in some way.
JsonInputException(String) - Constructor for exception com.dyuproject.protostuff.JsonInputException
 
JsonIOUtil - Class in com.dyuproject.protostuff
Utility for the JSON serialization/deserialization of messages and objects tied to a schema.
JsonIOUtil.Factory - Class in com.dyuproject.protostuff
A custom factory simply to expose certain fields.
JsonOutput - Class in com.dyuproject.protostuff
An output used for writing data with json format.
JsonOutput(JsonGenerator) - Constructor for class com.dyuproject.protostuff.JsonOutput
 
JsonOutput(JsonGenerator, int) - Constructor for class com.dyuproject.protostuff.JsonOutput
 
JsonOutput(JsonGenerator, int, Schema<?>) - Constructor for class com.dyuproject.protostuff.JsonOutput
 
JsonXByteArrayInput - Class in com.dyuproject.protostuff
An byte array based input used for reading data with json format.
JsonXByteArrayInput(byte[], int, int, boolean, char[], int, int, boolean, int) - Constructor for class com.dyuproject.protostuff.JsonXByteArrayInput
 
JsonXIOUtil - Class in com.dyuproject.protostuff
Json serialization via JsonXOutput.
JsonXIOUtil() - Constructor for class com.dyuproject.protostuff.JsonXIOUtil
 
JsonXOutput - Class in com.dyuproject.protostuff
An optimized json output which is efficient in writing numeric keys and pre-encoded utf8 strings (in byte array form).
JsonXOutput(LinkedBuffer, int, Schema<?>) - Constructor for class com.dyuproject.protostuff.JsonXOutput
 
JsonXOutput(LinkedBuffer, OutputStream, WriteSession.FlushHandler, int, int, Schema<?>) - Constructor for class com.dyuproject.protostuff.JsonXOutput
 
JsonXOutput(LinkedBuffer, OutputStream, int, Schema<?>) - Constructor for class com.dyuproject.protostuff.JsonXOutput
 

M

mergeFrom(byte[], T, Schema<T>, boolean) - Static method in class com.dyuproject.protostuff.JsonIOUtil
Merges the message with the byte array using the given schema.
mergeFrom(byte[], int, int, T, Schema<T>, boolean) - Static method in class com.dyuproject.protostuff.JsonIOUtil
Merges the message with the byte array using the given schema.
mergeFrom(InputStream, T, Schema<T>, boolean) - Static method in class com.dyuproject.protostuff.JsonIOUtil
Merges the message from the InputStream using the given schema.
mergeFrom(InputStream, T, Schema<T>, boolean, LinkedBuffer) - Static method in class com.dyuproject.protostuff.JsonIOUtil
Merges the message from the InputStream using the given schema.
mergeFrom(Reader, T, Schema<T>, boolean) - Static method in class com.dyuproject.protostuff.JsonIOUtil
Merges the message from the Reader using the given schema.
mergeFrom(JsonParser, T, Schema<T>, boolean) - Static method in class com.dyuproject.protostuff.JsonIOUtil
Merges the message from the JsonParser using the given schema.
mergeFrom(byte[], T, Schema<T>) - Static method in class com.dyuproject.protostuff.JsonXIOUtil
 
mergeFrom(byte[], int, int, T, Schema<T>) - Static method in class com.dyuproject.protostuff.JsonXIOUtil
 
mergeFrom(byte[], int, int, T, Schema<T>, int, boolean) - Static method in class com.dyuproject.protostuff.JsonXIOUtil
 
mergeFrom(byte[], int, int, T, Schema<T>, boolean, char[], int, int, boolean) - Static method in class com.dyuproject.protostuff.JsonXIOUtil
 
mergeFrom(byte[], T, Schema<T>, boolean) - Static method in class com.dyuproject.protostuff.SmileIOUtil
Merges the message with the byte array using the given schema.
mergeFrom(byte[], int, int, T, Schema<T>, boolean) - Static method in class com.dyuproject.protostuff.SmileIOUtil
Merges the message with the byte array using the given schema.
mergeFrom(InputStream, T, Schema<T>, boolean) - Static method in class com.dyuproject.protostuff.SmileIOUtil
Merges the message from the InputStream using the given schema.
mergeFrom(InputStream, T, Schema<T>, boolean, LinkedBuffer) - Static method in class com.dyuproject.protostuff.SmileIOUtil
Merges the message from the InputStream using the given schema.
mergeObject(T, Schema<T>) - Method in class com.dyuproject.protostuff.JsonInput
 
mergeObject(T, Schema<T>) - Method in class com.dyuproject.protostuff.JsonXByteArrayInput
 

N

newJsonGenerator(OutputStream, byte[]) - Static method in class com.dyuproject.protostuff.JsonIOUtil
Creates a Utf8Generator for the outputstream with the supplied buf outBuffer to use.
newJsonParser(InputStream, byte[], int, int) - Static method in class com.dyuproject.protostuff.JsonIOUtil
Creates a Utf8StreamParser from the inputstream with the supplied buf inBuffer to use.
newPipe(byte[], boolean) - Static method in class com.dyuproject.protostuff.JsonIOUtil
Creates a json pipe from a byte array.
newPipe(byte[], int, int, boolean) - Static method in class com.dyuproject.protostuff.JsonIOUtil
Creates a json pipe from a byte array.
newPipe(InputStream, boolean) - Static method in class com.dyuproject.protostuff.JsonIOUtil
Creates a json pipe from an InputStream.
newPipe(Reader, boolean) - Static method in class com.dyuproject.protostuff.JsonIOUtil
Creates a json pipe from a Reader.
newPipe(JsonParser, boolean) - Static method in class com.dyuproject.protostuff.JsonIOUtil
Creates a json pipe from a JsonParser.
newPipe(byte[]) - Static method in class com.dyuproject.protostuff.JsonXIOUtil
Creates a json pipe from a byte array.
newPipe(byte[], int, int) - Static method in class com.dyuproject.protostuff.JsonXIOUtil
Creates a json pipe from a byte array.
newPipe(byte[], int, int, int, boolean) - Static method in class com.dyuproject.protostuff.JsonXIOUtil
Creates a json pipe from a byte array.
newPipe(byte[], int, int, boolean, char[], int, int, boolean) - Static method in class com.dyuproject.protostuff.JsonXIOUtil
Creates a json pipe from a byte array.
newPipe(byte[], boolean) - Static method in class com.dyuproject.protostuff.SmileIOUtil
Creates a smile pipe from a byte array.
newPipe(byte[], int, int, boolean) - Static method in class com.dyuproject.protostuff.SmileIOUtil
Creates a smile pipe from a byte array.
newPipe(InputStream, boolean) - Static method in class com.dyuproject.protostuff.SmileIOUtil
Creates a smile pipe from an InputStream.
newSmileGenerator(OutputStream, byte[]) - Static method in class com.dyuproject.protostuff.SmileIOUtil
Creates a SmileGenerator for the outputstream with the supplied buf outBuffer to use.
newSmileParser(InputStream, byte[], int, int) - Static method in class com.dyuproject.protostuff.SmileIOUtil
Creates a SmileParser from the inputstream with the supplied buf inBuffer to use.
NUMERIC - Static variable in class com.dyuproject.protostuff.JsonFlags
 
numeric - Variable in class com.dyuproject.protostuff.JsonInput
If true, the field number will be used on json keys.

P

parseListFrom(InputStream, Schema<T>, boolean) - Static method in class com.dyuproject.protostuff.JsonIOUtil
Parses the messages from the stream using the given schema.
parseListFrom(InputStream, Schema<T>, boolean, LinkedBuffer) - Static method in class com.dyuproject.protostuff.JsonIOUtil
Parses the messages from the stream using the given schema.
parseListFrom(Reader, Schema<T>, boolean) - Static method in class com.dyuproject.protostuff.JsonIOUtil
Parses the messages from the reader using the given schema.
parseListFrom(JsonParser, Schema<T>, boolean) - Static method in class com.dyuproject.protostuff.JsonIOUtil
Parses the messages from the parser using the given schema.
parseListFrom(byte[], Schema<T>) - Static method in class com.dyuproject.protostuff.JsonXIOUtil
Parses the messages from the parser using the given schema.
parseListFrom(byte[], int, int, Schema<T>) - Static method in class com.dyuproject.protostuff.JsonXIOUtil
Parses the messages from the parser using the given schema.
parseListFrom(byte[], int, int, Schema<T>, int, boolean) - Static method in class com.dyuproject.protostuff.JsonXIOUtil
Parses the messages from the parser using the given schema.
parseListFrom(byte[], int, int, Schema<T>, boolean, char[], int, int, boolean) - Static method in class com.dyuproject.protostuff.JsonXIOUtil
Parses the messages from the parser using the given schema.
parseListFrom(InputStream, Schema<T>, boolean) - Static method in class com.dyuproject.protostuff.SmileIOUtil
Parses the messages from the stream using the given schema.
parseListFrom(InputStream, Schema<T>, boolean, LinkedBuffer) - Static method in class com.dyuproject.protostuff.SmileIOUtil
Parses the messages from the stream using the given schema.
parser - Variable in class com.dyuproject.protostuff.JsonInput
The wrapped json parser.

R

readBool() - Method in class com.dyuproject.protostuff.JsonInput
 
readBool() - Method in class com.dyuproject.protostuff.JsonXByteArrayInput
 
readByteArray() - Method in class com.dyuproject.protostuff.JsonInput
 
readByteArray() - Method in class com.dyuproject.protostuff.JsonXByteArrayInput
 
readBytes() - Method in class com.dyuproject.protostuff.JsonInput
 
readBytes() - Method in class com.dyuproject.protostuff.JsonXByteArrayInput
 
readDouble() - Method in class com.dyuproject.protostuff.JsonInput
 
readDouble() - Method in class com.dyuproject.protostuff.JsonXByteArrayInput
 
readEnum() - Method in class com.dyuproject.protostuff.JsonInput
 
readEnum() - Method in class com.dyuproject.protostuff.JsonXByteArrayInput
 
readEnumIdx(EnumMapping) - Method in class com.dyuproject.protostuff.JsonInput
 
readEnumIdx(EnumMapping) - Method in class com.dyuproject.protostuff.JsonXByteArrayInput
 
readFieldNumber(Schema<T>) - Method in class com.dyuproject.protostuff.JsonInput
 
readFieldNumber(Schema<T>) - Method in class com.dyuproject.protostuff.JsonXByteArrayInput
 
readFixed32() - Method in class com.dyuproject.protostuff.JsonInput
 
readFixed32() - Method in class com.dyuproject.protostuff.JsonXByteArrayInput
 
readFixed64() - Method in class com.dyuproject.protostuff.JsonInput
 
readFixed64() - Method in class com.dyuproject.protostuff.JsonXByteArrayInput
 
readFloat() - Method in class com.dyuproject.protostuff.JsonInput
 
readFloat() - Method in class com.dyuproject.protostuff.JsonXByteArrayInput
 
readInt32() - Method in class com.dyuproject.protostuff.JsonInput
 
readInt32() - Method in class com.dyuproject.protostuff.JsonXByteArrayInput
 
readInt64() - Method in class com.dyuproject.protostuff.JsonInput
 
readInt64() - Method in class com.dyuproject.protostuff.JsonXByteArrayInput
 
readSFixed32() - Method in class com.dyuproject.protostuff.JsonInput
 
readSFixed32() - Method in class com.dyuproject.protostuff.JsonXByteArrayInput
 
readSFixed64() - Method in class com.dyuproject.protostuff.JsonInput
 
readSFixed64() - Method in class com.dyuproject.protostuff.JsonXByteArrayInput
 
readSInt32() - Method in class com.dyuproject.protostuff.JsonInput
 
readSInt32() - Method in class com.dyuproject.protostuff.JsonXByteArrayInput
 
readSInt64() - Method in class com.dyuproject.protostuff.JsonInput
 
readSInt64() - Method in class com.dyuproject.protostuff.JsonXByteArrayInput
 
readString() - Method in class com.dyuproject.protostuff.JsonInput
 
readString() - Method in class com.dyuproject.protostuff.JsonXByteArrayInput
 
readUInt32() - Method in class com.dyuproject.protostuff.JsonInput
 
readUInt32() - Method in class com.dyuproject.protostuff.JsonXByteArrayInput
 
readUInt64() - Method in class com.dyuproject.protostuff.JsonInput
 
readUInt64() - Method in class com.dyuproject.protostuff.JsonXByteArrayInput
 
reset() - Method in class com.dyuproject.protostuff.JsonInput
Resets this input.
reset() - Method in class com.dyuproject.protostuff.JsonOutput
Resets this output for re-use.
reset() - Method in class com.dyuproject.protostuff.JsonXByteArrayInput
Resets this input.
reset(int) - Method in class com.dyuproject.protostuff.JsonXByteArrayInput
Resets this input.
reset(int, int) - Method in class com.dyuproject.protostuff.JsonXByteArrayInput
Resets this input.
reset(byte[], int, int) - Method in class com.dyuproject.protostuff.JsonXByteArrayInput
Resets this input.
reset() - Method in class com.dyuproject.protostuff.JsonXOutput
Resets this output for re-use.

S

scope(int, boolean, Schema<?>, boolean) - Method in class com.dyuproject.protostuff.JsonXOutput
Equivalent to writeObject(int, Object, Schema, boolean) when used like this:
setBounds(int, int) - Method in class com.dyuproject.protostuff.JsonXByteArrayInput
Sets the offset and limit (which effectively re-uses this input).
SmileIOUtil - Class in com.dyuproject.protostuff
Smile IO utilities for messages.
SmileIOUtil.Factory - Class in com.dyuproject.protostuff
A custom factory simply to expose certain fields.

T

toByteArray(T, Schema<T>, boolean) - Static method in class com.dyuproject.protostuff.JsonIOUtil
Serializes the message into a byte array using the given schema.
toByteArray(T, Schema<T>, int) - Static method in class com.dyuproject.protostuff.JsonIOUtil
Serializes the message into a byte array using the given schema.
toByteArray(T, Schema<T>, boolean, LinkedBuffer) - Static method in class com.dyuproject.protostuff.JsonIOUtil
Serializes the message into a byte array using the given schema.
toByteArray(T, Schema<T>, int, LinkedBuffer) - Static method in class com.dyuproject.protostuff.JsonIOUtil
Serializes the message into a byte array using the given schema.
toByteArray(T, Schema<T>, boolean, LinkedBuffer) - Static method in class com.dyuproject.protostuff.JsonXIOUtil
 
toByteArray(T, Schema<T>, int, LinkedBuffer) - Static method in class com.dyuproject.protostuff.JsonXIOUtil
 
toByteArray(T, Schema<T>, boolean) - Static method in class com.dyuproject.protostuff.SmileIOUtil
Serializes the message into a byte array using the given schema.
toByteArray(T, Schema<T>, boolean, LinkedBuffer) - Static method in class com.dyuproject.protostuff.SmileIOUtil
Serializes the message into a byte array using the given schema.
transferByteRangeTo(Output, boolean, int, boolean) - Method in class com.dyuproject.protostuff.JsonInput
 
transferByteRangeTo(Output, boolean, int, boolean) - Method in class com.dyuproject.protostuff.JsonXByteArrayInput
 
transferEnumTo(Output, EnumMapping, int, boolean) - Method in class com.dyuproject.protostuff.JsonInput
 
transferEnumTo(Output, EnumMapping, int, boolean) - Method in class com.dyuproject.protostuff.JsonXByteArrayInput
 

U

updateLast(Schema<?>, Schema<?>) - Method in class com.dyuproject.protostuff.JsonOutput
 
updateLast(Schema<?>, Schema<?>) - Method in class com.dyuproject.protostuff.JsonXOutput
 
use(Schema<?>) - Method in class com.dyuproject.protostuff.JsonOutput
Before serializing a message/object tied to a schema, this should be called.
use(Schema<?>) - Method in class com.dyuproject.protostuff.JsonXOutput
Before serializing a message/object tied to a schema, this should be called.

W

writeBool(int, boolean, boolean) - Method in class com.dyuproject.protostuff.JsonOutput
 
writeBool(int, boolean, boolean) - Method in class com.dyuproject.protostuff.JsonXOutput
 
writeByteArray(int, byte[], boolean) - Method in class com.dyuproject.protostuff.JsonOutput
 
writeByteArray(int, byte[], boolean) - Method in class com.dyuproject.protostuff.JsonXOutput
 
writeByteRange(boolean, int, byte[], int, int, boolean) - Method in class com.dyuproject.protostuff.JsonOutput
 
writeByteRange(boolean, int, byte[], int, int, boolean) - Method in class com.dyuproject.protostuff.JsonXOutput
 
writeBytes(int, ByteString, boolean) - Method in class com.dyuproject.protostuff.JsonOutput
 
writeBytes(int, ByteString, boolean) - Method in class com.dyuproject.protostuff.JsonXOutput
 
writeDouble(int, double, boolean) - Method in class com.dyuproject.protostuff.JsonOutput
 
writeDouble(int, double, boolean) - Method in class com.dyuproject.protostuff.JsonXOutput
 
writeEnum(int, int, boolean) - Method in class com.dyuproject.protostuff.JsonOutput
 
writeEnum(int, int, boolean) - Method in class com.dyuproject.protostuff.JsonXOutput
 
writeEnumFromIdx(int, int, EnumMapping, boolean) - Method in class com.dyuproject.protostuff.JsonOutput
 
writeEnumFromIdx(int, int, EnumMapping, boolean) - Method in class com.dyuproject.protostuff.JsonXOutput
 
writeFixed32(int, int, boolean) - Method in class com.dyuproject.protostuff.JsonOutput
 
writeFixed32(int, int, boolean) - Method in class com.dyuproject.protostuff.JsonXOutput
 
writeFixed64(int, long, boolean) - Method in class com.dyuproject.protostuff.JsonOutput
 
writeFixed64(int, long, boolean) - Method in class com.dyuproject.protostuff.JsonXOutput
 
writeFloat(int, float, boolean) - Method in class com.dyuproject.protostuff.JsonOutput
 
writeFloat(int, float, boolean) - Method in class com.dyuproject.protostuff.JsonXOutput
 
writeInt32(int, int, boolean) - Method in class com.dyuproject.protostuff.JsonOutput
 
writeInt32(int, int, boolean) - Method in class com.dyuproject.protostuff.JsonXOutput
 
writeInt64(int, long, boolean) - Method in class com.dyuproject.protostuff.JsonOutput
 
writeInt64(int, long, boolean) - Method in class com.dyuproject.protostuff.JsonXOutput
 
writeListTo(OutputStream, List<T>, Schema<T>, boolean) - Static method in class com.dyuproject.protostuff.JsonIOUtil
Serializes the messages into the stream using the given schema.
writeListTo(OutputStream, List<T>, Schema<T>, boolean, LinkedBuffer) - Static method in class com.dyuproject.protostuff.JsonIOUtil
Serializes the messages into the stream using the given schema.
writeListTo(Writer, List<T>, Schema<T>, boolean) - Static method in class com.dyuproject.protostuff.JsonIOUtil
Serializes the messages into the writer using the given schema.
writeListTo(JsonGenerator, List<T>, Schema<T>, boolean) - Static method in class com.dyuproject.protostuff.JsonIOUtil
Serializes the messages into the generator using the given schema.
writeListTo(JsonGenerator, List<T>, Schema<T>, int) - Static method in class com.dyuproject.protostuff.JsonIOUtil
Serializes the messages into the generator using the given schema.
writeListTo(LinkedBuffer, List<T>, Schema<T>, boolean) - Static method in class com.dyuproject.protostuff.JsonXIOUtil
Serializes the messages into the LinkedBuffer using the given schema.
writeListTo(LinkedBuffer, List<T>, Schema<T>, int) - Static method in class com.dyuproject.protostuff.JsonXIOUtil
Serializes the messages into the LinkedBuffer using the given schema.
writeListTo(OutputStream, List<T>, Schema<T>, boolean, LinkedBuffer) - Static method in class com.dyuproject.protostuff.JsonXIOUtil
Serializes the messages into the stream using the given schema with the supplied buffer.
writeListTo(OutputStream, List<T>, Schema<T>, int, LinkedBuffer) - Static method in class com.dyuproject.protostuff.JsonXIOUtil
Serializes the messages into the stream using the given schema with the supplied buffer.
writeListTo(OutputStream, List<T>, Schema<T>, boolean) - Static method in class com.dyuproject.protostuff.SmileIOUtil
Serializes the messages into the stream using the given schema.
writeListTo(OutputStream, List<T>, Schema<T>, boolean, LinkedBuffer) - Static method in class com.dyuproject.protostuff.SmileIOUtil
Serializes the messages into the stream using the given schema.
writeObject(int, T, Schema<T>, boolean) - Method in class com.dyuproject.protostuff.JsonOutput
 
writeObject(int, T, Schema<T>, boolean) - Method in class com.dyuproject.protostuff.JsonXOutput
 
writeSFixed32(int, int, boolean) - Method in class com.dyuproject.protostuff.JsonOutput
 
writeSFixed32(int, int, boolean) - Method in class com.dyuproject.protostuff.JsonXOutput
 
writeSFixed64(int, long, boolean) - Method in class com.dyuproject.protostuff.JsonOutput
 
writeSFixed64(int, long, boolean) - Method in class com.dyuproject.protostuff.JsonXOutput
 
writeSInt32(int, int, boolean) - Method in class com.dyuproject.protostuff.JsonOutput
 
writeSInt32(int, int, boolean) - Method in class com.dyuproject.protostuff.JsonXOutput
 
writeSInt64(int, long, boolean) - Method in class com.dyuproject.protostuff.JsonOutput
 
writeSInt64(int, long, boolean) - Method in class com.dyuproject.protostuff.JsonXOutput
 
writeString(int, String, boolean) - Method in class com.dyuproject.protostuff.JsonOutput
 
writeString(int, String, boolean) - Method in class com.dyuproject.protostuff.JsonXOutput
 
writeTo(OutputStream, T, Schema<T>, boolean) - Static method in class com.dyuproject.protostuff.JsonIOUtil
Serializes the message into an OutputStream using the given schema.
writeTo(OutputStream, T, Schema<T>, int) - Static method in class com.dyuproject.protostuff.JsonIOUtil
Serializes the message into an OutputStream using the given schema.
writeTo(OutputStream, T, Schema<T>, boolean, LinkedBuffer) - Static method in class com.dyuproject.protostuff.JsonIOUtil
Serializes the message into an OutputStream using the given schema.
writeTo(OutputStream, T, Schema<T>, int, LinkedBuffer) - Static method in class com.dyuproject.protostuff.JsonIOUtil
Serializes the message into an OutputStream using the given schema.
writeTo(Writer, T, Schema<T>, boolean) - Static method in class com.dyuproject.protostuff.JsonIOUtil
Serializes the message into a Writer using the given schema.
writeTo(JsonGenerator, T, Schema<T>, boolean) - Static method in class com.dyuproject.protostuff.JsonIOUtil
Serializes the message into a JsonGenerator using the given schema.
writeTo(JsonGenerator, T, Schema<T>, int) - Static method in class com.dyuproject.protostuff.JsonIOUtil
Serializes the message into a JsonGenerator using the given schema.
writeTo(LinkedBuffer, T, Schema<T>, boolean) - Static method in class com.dyuproject.protostuff.JsonXIOUtil
Serializes the message into a LinkedBuffer via JsonXOutput using the given schema with the supplied buffer.
writeTo(LinkedBuffer, T, Schema<T>, int) - Static method in class com.dyuproject.protostuff.JsonXIOUtil
Serializes the message into a LinkedBuffer via JsonXOutput using the given schema with the supplied buffer.
writeTo(OutputStream, T, boolean, LinkedBuffer) - Static method in class com.dyuproject.protostuff.JsonXIOUtil
Serializes the message into an OutputStream via JsonXOutput with the supplied buffer.
writeTo(OutputStream, T, Schema<T>, boolean, LinkedBuffer) - Static method in class com.dyuproject.protostuff.JsonXIOUtil
Serializes the message into an OutputStream via JsonXOutput using the given schema.
writeTo(OutputStream, T, Schema<T>, int, LinkedBuffer) - Static method in class com.dyuproject.protostuff.JsonXIOUtil
Serializes the message into an OutputStream via JsonXOutput using the given schema.
writeTo(OutputStream, T, Schema<T>, boolean) - Static method in class com.dyuproject.protostuff.SmileIOUtil
Serializes the message into an OutputStream using the given schema.
writeTo(OutputStream, T, Schema<T>, boolean, LinkedBuffer) - Static method in class com.dyuproject.protostuff.SmileIOUtil
Serializes the message into an OutputStream using the given schema.
writeUInt32(int, int, boolean) - Method in class com.dyuproject.protostuff.JsonOutput
 
writeUInt32(int, int, boolean) - Method in class com.dyuproject.protostuff.JsonXOutput
 
writeUInt64(int, long, boolean) - Method in class com.dyuproject.protostuff.JsonOutput
 
writeUInt64(int, long, boolean) - Method in class com.dyuproject.protostuff.JsonXOutput
 
C D E F G H I J M N P R S T U W 
Skip navigation links

Copyright © 2009-2023. All Rights Reserved.