Uses of Class
com.esotericsoftware.kryo.io.Input
Packages that use Input
Package
Description
-
Uses of Input in com.esotericsoftware.kryo
Methods in com.esotericsoftware.kryo with parameters of type InputModifier and TypeMethodDescriptionvoid
abstract T
Reads bytes and returns a new object of the specified concrete type.Reads a class and returns its registration.Reads a class and returns its registration.Kryo.readClassAndObject
(Input input) Reads the class and object or null using the registered serializer.<T> T
Kryo.readObject
(Input input, Class<T> type) Reads an object using the registered serializer.<T> T
Kryo.readObject
(Input input, Class<T> type, Serializer serializer) Reads an object using the specified serializer.<T> T
Kryo.readObjectOrNull
(Input input, Class<T> type) Reads an object or null using the registered serializer.<T> T
Kryo.readObjectOrNull
(Input input, Class<T> type, Serializer serializer) Reads an object or null using the specified serializer.(package private) int
Kryo.readReferenceOrNull
(Input input, Class type, boolean mayBeNull) ReturnsKryo.REF
if a reference to a previously read object was read, which is stored inKryo.readObject
. -
Uses of Input in com.esotericsoftware.kryo.io
Subclasses of Input in com.esotericsoftware.kryo.ioModifier and TypeClassDescriptionclass
An InputStream that reads data from a byte array and optionally fills the byte array from another InputStream as needed.class
An InputStream that reads lengths and chunks of data from another OutputStream, allowing chunks to be skipped.Fields in com.esotericsoftware.kryo.io declared as InputMethods in com.esotericsoftware.kryo.io with parameters of type InputConstructors in com.esotericsoftware.kryo.io with parameters of type Input -
Uses of Input in com.esotericsoftware.kryo.serializers
Methods in com.esotericsoftware.kryo.serializers with parameters of type InputModifier and TypeMethodDescriptionprotected Collection
CollectionSerializer.create
(Kryo kryo, Input input, Class<Collection> type) Used byCollectionSerializer.read(Kryo, Input, Class)
to create the new object.protected Map
protected TreeSet
DefaultSerializers.TreeSetSerializer.create
(Kryo kryo, Input input, Class<Collection> type) protected T
Used byFieldSerializer.read(Kryo, Input, Class)
to create the new object.protected Map
Used byMapSerializer.read(Kryo, Input, Class)
to create the new object.private ObjectInput
ExternalizableSerializer.getObjectInput
(Kryo kryo, Input input) void
void
void
void
void
void
void
void
void
CollectionSerializer.read
(Kryo kryo, Input input, Class<Collection> type) boolean[]
byte[]
char[]
double[]
float[]
int[]
long[]
Object[]
short[]
String[]
DefaultSerializers.BigDecimalSerializer.read
(Kryo kryo, Input input, Class<BigDecimal> type) DefaultSerializers.BigIntegerSerializer.read
(Kryo kryo, Input input, Class<BigInteger> type) DefaultSerializers.KryoSerializableSerializer.read
(Kryo kryo, Input input, Class<KryoSerializable> type) DefaultSerializers.StringBufferSerializer.read
(Kryo kryo, Input input, Class<StringBuffer> type) DefaultSerializers.StringBuilderSerializer.read
(Kryo kryo, Input input, Class<StringBuilder> type) abstract void
void
void
void
void
void
void
void
void
void
OptionalSerializers.OptionalDoubleSerializer.read
(Kryo kryo, Input input, Class<OptionalDouble> type) OptionalSerializers.OptionalIntSerializer.read
(Kryo kryo, Input input, Class<OptionalInt> type) OptionalSerializers.OptionalLongSerializer.read
(Kryo kryo, Input input, Class<OptionalLong> type) (package private) static LocalDate
TimeSerializers.LocalDateTimeSerializer.read
(Kryo kryo, Input in, Class<LocalDateTime> type) (package private) static LocalTime
TimeSerializers.OffsetDateTimeSerializer.read
(Kryo kryo, Input in, Class<OffsetDateTime> type) TimeSerializers.OffsetTimeSerializer.read
(Kryo kryo, Input in, Class<OffsetTime> type) TimeSerializers.ZonedDateTimeSerializer.read
(Kryo kryo, Input in, Class<ZonedDateTime> type) (package private) static ZoneId
(package private) static ZoneOffset
TimeSerializers.ZoneOffsetSerializer.read
(Kryo kryo, Input in, Class<ZoneOffset> type) private Object
ExternalizableSerializer.readExternal
(Kryo kryo, Input input, Class type) -
Uses of Input in com.esotericsoftware.kryo.util
Methods in com.esotericsoftware.kryo.util with parameters of type Input