Index
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
A
- all() - Static method in class com.twitter.chill.java.PackageRegistrar
- apply(Kryo) - Method in class com.twitter.chill.ClassRegistrar
- apply(Kryo) - Method in interface com.twitter.chill.IKryoRegistrar
- apply(Kryo) - Method in class com.twitter.chill.java.IterableRegistrar
- apply(Kryo) - Method in class com.twitter.chill.java.Java8ClosureRegistrar
- apply(Kryo) - Method in class com.twitter.chill.ReflectingDefaultRegistrar
- apply(Kryo) - Method in class com.twitter.chill.ReflectingRegistrar
- apply(Kryo) - Method in class com.twitter.chill.SingleDefaultRegistrar
- apply(Kryo) - Method in class com.twitter.chill.SingleRegistrar
- ArraysAsListSerializer - Class in com.twitter.chill.java
-
A kryo
Serializerfor lists created viaArrays.asList(Object...). - ArraysAsListSerializer() - Constructor for class com.twitter.chill.java.ArraysAsListSerializer
B
- Base64 - Class in com.twitter.chill
-
Encodes and decodes to and from Base64 notation.
- Base64.InputStream - Class in com.twitter.chill
-
A
Base64.InputStreamwill read data from anotherjava.io.InputStream, given in the constructor, and encode/decode to/from Base64 notation on the fly. - Base64.OutputStream - Class in com.twitter.chill
-
A
Base64.OutputStreamwill write data to anotherjava.io.OutputStream, given in the constructor, and encode/decode to/from Base64 notation on the fly. - BitSetSerializer - Class in com.twitter.chill.java
- BitSetSerializer() - Constructor for class com.twitter.chill.java.BitSetSerializer
- borrow() - Method in class com.twitter.chill.ResourcePool
- buildRegistrars(String, boolean) - Method in class com.twitter.chill.config.ReflectingInstantiator
C
- ClassRegistrar<T> - Class in com.twitter.chill
-
Register this class to be used with the default serializer for this class
- ClassRegistrar(Class<T>) - Constructor for class com.twitter.chill.ClassRegistrar
- clear() - Method in class com.twitter.chill.SerDeState
-
Call this when to reset the state to the initial state
- close() - Method in class com.twitter.chill.Base64.OutputStream
-
Flushes and closes (I think, in the superclass) the stream.
- com.twitter.chill - package com.twitter.chill
- com.twitter.chill.config - package com.twitter.chill.config
- com.twitter.chill.java - package com.twitter.chill.java
- Config - Class in com.twitter.chill.config
-
Particular systems subclass this to reuse existing configured Instantiators
- Config() - Constructor for class com.twitter.chill.config.Config
- ConfigurationException - Exception in com.twitter.chill.config
- ConfigurationException(Exception) - Constructor for exception com.twitter.chill.config.ConfigurationException
- ConfigurationException(String) - Constructor for exception com.twitter.chill.config.ConfigurationException
- ConfigurationException(String, Exception) - Constructor for exception com.twitter.chill.config.ConfigurationException
- ConfiguredInstantiator - Class in com.twitter.chill.config
-
This is the standard Config based KryoInstantiator.
- ConfiguredInstantiator(Config) - Constructor for class com.twitter.chill.config.ConfiguredInstantiator
- contains(String) - Method in class com.twitter.chill.config.Config
D
- decode(byte[]) - Static method in class com.twitter.chill.Base64
-
Low-level access to decoding ASCII characters in the form of a byte array.
- decode(byte[], int, int, int) - Static method in class com.twitter.chill.Base64
-
Low-level access to decoding ASCII characters in the form of a byte array.
- decode(String) - Static method in class com.twitter.chill.Base64
-
Decodes data from Base64 notation, automatically detecting gzip-compressed data and decompressing it.
- decode(String, int) - Static method in class com.twitter.chill.Base64
-
Decodes data from Base64 notation, automatically detecting gzip-compressed data and decompressing it.
- DECODE - Static variable in class com.twitter.chill.Base64
-
Specify decoding in first bit.
- decodeFileToFile(String, String) - Static method in class com.twitter.chill.Base64
-
Reads
infileand decodes it tooutfile. - decodeFromFile(String) - Static method in class com.twitter.chill.Base64
-
Convenience method for reading a base64-encoded file and decoding it.
- decodeToFile(String, String) - Static method in class com.twitter.chill.Base64
-
Convenience method for decoding data to a file.
- decodeToObject(String) - Static method in class com.twitter.chill.Base64
-
Attempts to decode Base64 data and deserialize a Java Object within.
- decodeToObject(String, int, ClassLoader) - Static method in class com.twitter.chill.Base64
-
Attempts to decode Base64 data and deserialize a Java Object within.
- deepCopy(T) - Method in class com.twitter.chill.KryoPool
- DEFAULT_REGISTRATIONS - Static variable in class com.twitter.chill.config.ReflectingInstantiator
-
DEFAULT_REGISTRATIONS holds a colon-separated list of classes or interfaces to register with Kryo.
- delegate - Variable in class com.twitter.chill.config.ConfiguredInstantiator
- deserialize(Kryo, String) - Static method in class com.twitter.chill.config.ConfiguredInstantiator
- DO_BREAK_LINES - Static variable in class com.twitter.chill.Base64
-
Do break lines when encoding.
- DONT_GUNZIP - Static variable in class com.twitter.chill.Base64
-
Specify that gzipped data should not be automatically gunzipped.
E
- encode(ByteBuffer, ByteBuffer) - Static method in class com.twitter.chill.Base64
-
Performs Base64 encoding on the
rawByteBuffer, writing it to theencodedByteBuffer. - encode(ByteBuffer, CharBuffer) - Static method in class com.twitter.chill.Base64
-
Performs Base64 encoding on the
rawByteBuffer, writing it to theencodedCharBuffer. - ENCODE - Static variable in class com.twitter.chill.Base64
-
Specify encoding in first bit.
- encodeBytes(byte[]) - Static method in class com.twitter.chill.Base64
-
Encodes a byte array into Base64 notation.
- encodeBytes(byte[], int) - Static method in class com.twitter.chill.Base64
-
Encodes a byte array into Base64 notation.
- encodeBytes(byte[], int, int) - Static method in class com.twitter.chill.Base64
-
Encodes a byte array into Base64 notation.
- encodeBytes(byte[], int, int, int) - Static method in class com.twitter.chill.Base64
-
Encodes a byte array into Base64 notation.
- encodeBytesToBytes(byte[]) - Static method in class com.twitter.chill.Base64
-
Similar to
Base64.encodeBytes(byte[])but returns a byte array instead of instantiating a String. - encodeBytesToBytes(byte[], int, int, int) - Static method in class com.twitter.chill.Base64
-
Similar to
Base64.encodeBytes(byte[], int, int, int)but returns a byte array instead of instantiating a String. - encodeFileToFile(String, String) - Static method in class com.twitter.chill.Base64
-
Reads
infileand encodes it tooutfile. - encodeFromFile(String) - Static method in class com.twitter.chill.Base64
-
Convenience method for reading a binary file and base64-encoding it.
- encodeObject(Serializable) - Static method in class com.twitter.chill.Base64
-
Serializes an object and returns the Base64-encoded version of that serialized object.
- encodeObject(Serializable, int) - Static method in class com.twitter.chill.Base64
-
Serializes an object and returns the Base64-encoded version of that serialized object.
- encodeToFile(byte[], String) - Static method in class com.twitter.chill.Base64
-
Convenience method for encoding data to a file.
- equals(Object) - Method in class com.twitter.chill.ClassRegistrar
- equals(Object) - Method in class com.twitter.chill.config.ReflectingInstantiator
- equals(Object) - Method in class com.twitter.chill.ReflectingDefaultRegistrar
- equals(Object) - Method in class com.twitter.chill.ReflectingRegistrar
F
- fastSplitKey(String) - Static method in class com.twitter.chill.config.ConfiguredInstantiator
-
Java's string split is very expensive due to regexes.
- flushBase64() - Method in class com.twitter.chill.Base64.OutputStream
-
Method added by PHIL.
- fromBytes(byte[]) - Method in class com.twitter.chill.KryoPool
- fromBytes(byte[], Class<T>) - Method in class com.twitter.chill.KryoPool
G
- get(String) - Method in class com.twitter.chill.config.Config
-
Return null if this key is undefined
- get(String) - Method in class com.twitter.chill.config.JavaMapConfig
-
Return null if this key is undefined
- getBoolean(String) - Method in class com.twitter.chill.config.Config
- getBoolean(String, boolean) - Method in class com.twitter.chill.config.Config
- getDelegate() - Method in class com.twitter.chill.config.ConfiguredInstantiator
-
Return the delegated KryoInstantiator
- getInnerField() - Method in class com.twitter.chill.java.UnmodifiableCollectionSerializer
- getInnerField() - Method in class com.twitter.chill.java.UnmodifiableListSerializer
- getInnerField() - Method in class com.twitter.chill.java.UnmodifiableMapSerializer
- getInnerField() - Method in class com.twitter.chill.java.UnmodifiableSetSerializer
- getInnerField() - Method in class com.twitter.chill.java.UnmodifiableSortedMapSerializer
- getInnerField() - Method in class com.twitter.chill.java.UnmodifiableSortedSetSerializer
- getOrElse(String, String) - Method in class com.twitter.chill.config.Config
- getRegisteredClass() - Method in class com.twitter.chill.ClassRegistrar
- getRegisteredClass() - Method in class com.twitter.chill.ReflectingDefaultRegistrar
- getRegisteredClass() - Method in class com.twitter.chill.ReflectingRegistrar
- getRegistrars() - Method in class com.twitter.chill.java.IterableRegistrar
- getSerializerClass() - Method in class com.twitter.chill.ReflectingDefaultRegistrar
- getSerializerClass() - Method in class com.twitter.chill.ReflectingRegistrar
- GZIP - Static variable in class com.twitter.chill.Base64
-
Specify that data should be gzip-compressed in second bit.
H
- hashCode() - Method in class com.twitter.chill.ClassRegistrar
- hashCode() - Method in class com.twitter.chill.config.ReflectingInstantiator
- hashCode() - Method in class com.twitter.chill.ReflectingDefaultRegistrar
- hashCode() - Method in class com.twitter.chill.ReflectingRegistrar
- hasRegistration(Class) - Method in class com.twitter.chill.KryoPool
- hasRegistration(Class) - Method in class com.twitter.chill.SerDeState
I
- IKryoRegistrar - Interface in com.twitter.chill
-
A Registrar adds registrations to a given Kryo instance.
- InetSocketAddressSerializer - Class in com.twitter.chill.java
- InetSocketAddressSerializer() - Constructor for class com.twitter.chill.java.InetSocketAddressSerializer
- input - Variable in class com.twitter.chill.SerDeState
- InputStream(InputStream) - Constructor for class com.twitter.chill.Base64.InputStream
-
Constructs a
Base64.InputStreamin DECODE mode. - InputStream(InputStream, int) - Constructor for class com.twitter.chill.Base64.InputStream
-
Constructs a
Base64.InputStreamin either ENCODE or DECODE mode. - INSTANTIATOR_STRATEGY_CLASS - Static variable in class com.twitter.chill.config.ReflectingInstantiator
-
Name of the InstatiatorStrategy to use.
- INSTANTIATOR_STRATEGY_CLASS_DEFAULT - Static variable in class com.twitter.chill.config.ReflectingInstantiator
- IterableRegistrar - Class in com.twitter.chill.java
-
A Registrar adds registrations to a given Kryo instance.
- IterableRegistrar(IKryoRegistrar...) - Constructor for class com.twitter.chill.java.IterableRegistrar
- IterableRegistrar(Iterable<? extends IKryoRegistrar>) - Constructor for class com.twitter.chill.java.IterableRegistrar
- IterableRegistrarSerializer - Class in com.twitter.chill.java
- IterableRegistrarSerializer() - Constructor for class com.twitter.chill.java.IterableRegistrarSerializer
J
- Java8ClosureRegistrar - Class in com.twitter.chill.java
-
Enables Java 8 lambda serialization if running on Java 8; no-op otherwise.
- Java8ClosureRegistrar() - Constructor for class com.twitter.chill.java.Java8ClosureRegistrar
- JavaMapConfig - Class in com.twitter.chill.config
-
This takes a raw Map and calls toString on the objects before returning them as values
- JavaMapConfig() - Constructor for class com.twitter.chill.config.JavaMapConfig
- JavaMapConfig(Map) - Constructor for class com.twitter.chill.config.JavaMapConfig
K
- KEY - Static variable in class com.twitter.chill.config.ConfiguredInstantiator
-
Key we use to configure this class.
- kryo - Variable in class com.twitter.chill.SerDeState
- KRYO_CLASS - Static variable in class com.twitter.chill.config.ReflectingInstantiator
-
Name of the subclass of kryo to instantiate to start with.
- KRYO_CLASS_DEFAULT - Static variable in class com.twitter.chill.config.ReflectingInstantiator
- KryoInstantiator - Class in com.twitter.chill
-
Class to create a new Kryo instance.
- KryoInstantiator() - Constructor for class com.twitter.chill.KryoInstantiator
- KryoPool - Class in com.twitter.chill
-
Simple ResourcePool to save on Kryo instances, which are expensive to allocate
- KryoPool(int) - Constructor for class com.twitter.chill.KryoPool
L
- LocaleSerializer - Class in com.twitter.chill.java
-
The java serializer uses an cache of allocated instances so it is probably a bit hard to beat, so why bother
- LocaleSerializer() - Constructor for class com.twitter.chill.java.LocaleSerializer
N
- newInstance() - Method in class com.twitter.chill.ResourcePool
- newInstance(Collection<?>) - Method in class com.twitter.chill.java.UnmodifiableCollectionSerializer
- newInstance(List<?>) - Method in class com.twitter.chill.java.UnmodifiableListSerializer
- newInstance(Map<?, ?>) - Method in class com.twitter.chill.java.UnmodifiableMapSerializer
- newInstance(Set<?>) - Method in class com.twitter.chill.java.UnmodifiableSetSerializer
- newInstance(SortedMap<?, ?>) - Method in class com.twitter.chill.java.UnmodifiableSortedMapSerializer
- newInstance(SortedSet<?>) - Method in class com.twitter.chill.java.UnmodifiableSortedSetSerializer
- newKryo() - Method in class com.twitter.chill.config.ConfiguredInstantiator
-
Calls through to the delegate
- newKryo() - Method in class com.twitter.chill.config.ReflectingInstantiator
- newKryo() - Method in class com.twitter.chill.KryoInstantiator
- newKryoWithEx() - Method in class com.twitter.chill.config.ReflectingInstantiator
- NO_OPTIONS - Static variable in class com.twitter.chill.Base64
-
No options specified.
- numOfReadBytes() - Method in class com.twitter.chill.SerDeState
- numOfWrittenBytes() - Method in class com.twitter.chill.SerDeState
O
- ORDERED - Static variable in class com.twitter.chill.Base64
-
Encode using the special "ordered" dialect of Base64 described here: http://www.faqs.org/qa/rfcc-1940.html.
- output - Variable in class com.twitter.chill.SerDeState
- OutputStream(OutputStream) - Constructor for class com.twitter.chill.Base64.OutputStream
-
Constructs a
Base64.OutputStreamin ENCODE mode. - OutputStream(OutputStream, int) - Constructor for class com.twitter.chill.Base64.OutputStream
-
Constructs a
Base64.OutputStreamin either ENCODE or DECODE mode. - outputToBytes() - Method in class com.twitter.chill.SerDeState
P
- PackageRegistrar - Class in com.twitter.chill.java
-
Creates a registrar for all the serializers in the chill.java package
- PackageRegistrar() - Constructor for class com.twitter.chill.java.PackageRegistrar
- prefix - Static variable in class com.twitter.chill.config.ReflectingInstantiator
-
All keys are prefixed with this string
R
- read() - Method in class com.twitter.chill.Base64.InputStream
-
Reads enough of the input stream to convert to/from Base64 and returns the next byte.
- read(byte[], int, int) - Method in class com.twitter.chill.Base64.InputStream
-
Calls
Base64.InputStream.read()repeatedly until the end of stream is reached or len bytes are read. - read(Kryo, Input, Class<? extends IterableRegistrar>) - Method in class com.twitter.chill.java.IterableRegistrarSerializer
- read(Kryo, Input, Class<? extends InetSocketAddress>) - Method in class com.twitter.chill.java.InetSocketAddressSerializer
- read(Kryo, Input, Class<? extends URI>) - Method in class com.twitter.chill.java.URISerializer
- read(Kryo, Input, Class<? extends Date>) - Method in class com.twitter.chill.java.SqlDateSerializer
- read(Kryo, Input, Class<? extends Time>) - Method in class com.twitter.chill.java.SqlTimeSerializer
- read(Kryo, Input, Class<? extends Timestamp>) - Method in class com.twitter.chill.java.TimestampSerializer
- read(Kryo, Input, Class<? extends BitSet>) - Method in class com.twitter.chill.java.BitSetSerializer
- read(Kryo, Input, Class<? extends List<?>>) - Method in class com.twitter.chill.java.ArraysAsListSerializer
- read(Kryo, Input, Class<? extends Pattern>) - Method in class com.twitter.chill.java.RegexSerializer
- read(Kryo, Input, Class<? extends UUID>) - Method in class com.twitter.chill.java.UUIDSerializer
- read(Kryo, Input, Class<? extends Set<?>>) - Method in class com.twitter.chill.java.UnmodifiableSetSerializer
- readClassAndObject() - Method in class com.twitter.chill.SerDeState
- readObject(Class<T>) - Method in class com.twitter.chill.SerDeState
- ReflectingDefaultRegistrar<T> - Class in com.twitter.chill
-
Set the default serializers for subclasses of the given class
- ReflectingDefaultRegistrar(Class<T>, Class<? extends Serializer<?>>) - Constructor for class com.twitter.chill.ReflectingDefaultRegistrar
- ReflectingInstantiator - Class in com.twitter.chill.config
- ReflectingInstantiator(Config) - Constructor for class com.twitter.chill.config.ReflectingInstantiator
- ReflectingInstantiator(Class<? extends Kryo>, Class<? extends InstantiatorStrategy>, Iterable<ClassRegistrar>, Iterable<ReflectingRegistrar>, Iterable<ReflectingDefaultRegistrar>, boolean, boolean) - Constructor for class com.twitter.chill.config.ReflectingInstantiator
- ReflectingInstantiator(Iterable<ClassRegistrar>, Iterable<ReflectingRegistrar>, Iterable<ReflectingDefaultRegistrar>) - Constructor for class com.twitter.chill.config.ReflectingInstantiator
-
Create an instance using the defaults for non-listed params
- ReflectingRegistrar<T> - Class in com.twitter.chill
-
Use reflection to instantiate a serializer.
- ReflectingRegistrar(Class<T>, Class<? extends Serializer<?>>) - Constructor for class com.twitter.chill.ReflectingRegistrar
- RegexSerializer - Class in com.twitter.chill.java
- RegexSerializer() - Constructor for class com.twitter.chill.java.RegexSerializer
- registrar() - Static method in class com.twitter.chill.java.ArraysAsListSerializer
- registrar() - Static method in class com.twitter.chill.java.BitSetSerializer
- registrar() - Static method in class com.twitter.chill.java.InetSocketAddressSerializer
- registrar() - Static method in class com.twitter.chill.java.LocaleSerializer
- registrar() - Static method in class com.twitter.chill.java.RegexSerializer
- registrar() - Static method in class com.twitter.chill.java.SimpleDateFormatSerializer
- registrar() - Static method in class com.twitter.chill.java.SqlDateSerializer
- registrar() - Static method in class com.twitter.chill.java.SqlTimeSerializer
- registrar() - Static method in class com.twitter.chill.java.TimestampSerializer
- registrar() - Static method in class com.twitter.chill.java.UnmodifiableCollectionSerializer
- registrar() - Static method in class com.twitter.chill.java.UnmodifiableListSerializer
- registrar() - Static method in class com.twitter.chill.java.UnmodifiableMapSerializer
- registrar() - Static method in class com.twitter.chill.java.UnmodifiableSetSerializer
- registrar() - Static method in class com.twitter.chill.java.UnmodifiableSortedMapSerializer
- registrar() - Static method in class com.twitter.chill.java.UnmodifiableSortedSetSerializer
- registrar() - Static method in class com.twitter.chill.java.URISerializer
- registrar() - Static method in class com.twitter.chill.java.UUIDSerializer
- registrarsToString(Iterable<? extends IKryoRegistrar>) - Method in class com.twitter.chill.config.ReflectingInstantiator
- REGISTRATION_REQUIRED - Static variable in class com.twitter.chill.config.ReflectingInstantiator
-
If REGISTRATION_REQUIRED is set to false, Kryo will try to serialize all java objects, not just those with custom serializations registered.
- REGISTRATION_REQUIRED_DEFAULT - Static variable in class com.twitter.chill.config.ReflectingInstantiator
- REGISTRATIONS - Static variable in class com.twitter.chill.config.ReflectingInstantiator
-
KRYO_REGISTRATIONS holds a colon-separated list of classes to register with Kryo.
- release(SerDeState) - Method in class com.twitter.chill.KryoPool
- release(T) - Method in class com.twitter.chill.ResourcePool
- ResourcePool<T> - Class in com.twitter.chill
-
Simple ResourcePool to save on Kryo instances, which are expensive to allocate
- ResourcePool(int) - Constructor for class com.twitter.chill.ResourcePool
- resumeEncoding() - Method in class com.twitter.chill.Base64.OutputStream
-
Resumes encoding of the stream.
S
- SerDeState - Class in com.twitter.chill
-
This holds a Kryo Instance, Input and Output so that these objects can be pooled and no reallocated on each serialization.
- SerDeState(Kryo, Input, Output) - Constructor for class com.twitter.chill.SerDeState
- serialize(Kryo, KryoInstantiator) - Static method in class com.twitter.chill.config.ConfiguredInstantiator
- set(Config) - Method in class com.twitter.chill.config.ReflectingInstantiator
- set(String, String) - Method in class com.twitter.chill.config.Config
- set(String, String) - Method in class com.twitter.chill.config.JavaMapConfig
- setBoolean(String, Boolean) - Method in class com.twitter.chill.config.Config
- setClassLoader(ClassLoader) - Method in class com.twitter.chill.KryoInstantiator
-
Use this to set a specific classloader
- setInput(byte[]) - Method in class com.twitter.chill.SerDeState
- setInput(byte[], int, int) - Method in class com.twitter.chill.SerDeState
- setInput(InputStream) - Method in class com.twitter.chill.SerDeState
- setInstantiatorStrategy(InstantiatorStrategy) - Method in class com.twitter.chill.KryoInstantiator
-
If true, Kryo will error if it sees a class that has not been registered
- setReferences(boolean) - Method in class com.twitter.chill.KryoInstantiator
-
If true, Kryo keeps a map of all the objects it has seen.
- setReflect(Config, Class<? extends KryoInstantiator>) - Static method in class com.twitter.chill.config.ConfiguredInstantiator
-
In this mode, we are just refecting to another delegated class.
- setRegistrationRequired(boolean) - Method in class com.twitter.chill.KryoInstantiator
-
If true, Kryo will error if it sees a class that has not been registered
- setSerialized(Config, KryoInstantiator) - Static method in class com.twitter.chill.config.ConfiguredInstantiator
-
Use the default KryoInstantiator to serialize the KryoInstantiator ki same as: setSerialized(conf, KryoInstantiator.class, ki)
- setSerialized(Config, Class<? extends KryoInstantiator>, KryoInstantiator) - Static method in class com.twitter.chill.config.ConfiguredInstantiator
-
If this reflector needs config to be set, that should be done PRIOR to making this call.
- setThreadContextClassLoader() - Method in class com.twitter.chill.KryoInstantiator
-
Use Thread.currentThread().getContextClassLoader() as the ClassLoader where ther newKryo is called
- SimpleDateFormatSerializer - Class in com.twitter.chill.java
-
This class fails with the Fields serializer.
- SimpleDateFormatSerializer() - Constructor for class com.twitter.chill.java.SimpleDateFormatSerializer
- SingleDefaultRegistrar<T> - Class in com.twitter.chill
-
Set the default serializers for subclasses of the given class
- SingleDefaultRegistrar(Class<T>, Serializer<T>) - Constructor for class com.twitter.chill.SingleDefaultRegistrar
- SingleRegistrar<T> - Class in com.twitter.chill
- SingleRegistrar(Class<T>, Serializer<T>) - Constructor for class com.twitter.chill.SingleRegistrar
- SKIP_MISSING - Static variable in class com.twitter.chill.config.ReflectingInstantiator
-
If SKIP_MISSING is set to false, Kryo will throw an error when Cascading tries to register a class or serialization that doesn't exist.
- SKIP_MISSING_DEFAULT - Static variable in class com.twitter.chill.config.ReflectingInstantiator
- SqlDateSerializer - Class in com.twitter.chill.java
- SqlDateSerializer() - Constructor for class com.twitter.chill.java.SqlDateSerializer
- SqlTimeSerializer - Class in com.twitter.chill.java
- SqlTimeSerializer() - Constructor for class com.twitter.chill.java.SqlTimeSerializer
- suspendEncoding() - Method in class com.twitter.chill.Base64.OutputStream
-
Suspends encoding of the stream.
T
- TimestampSerializer - Class in com.twitter.chill.java
- TimestampSerializer() - Constructor for class com.twitter.chill.java.TimestampSerializer
- toBytesWithClass(Object) - Method in class com.twitter.chill.KryoPool
- toBytesWithoutClass(Object) - Method in class com.twitter.chill.KryoPool
U
- UnmodifiableCollectionSerializer - Class in com.twitter.chill.java
-
A kryo
Serializerfor unmodifiable collections created viaCollections.unmodifiableCollection(Collection). - UnmodifiableCollectionSerializer() - Constructor for class com.twitter.chill.java.UnmodifiableCollectionSerializer
- UnmodifiableListSerializer - Class in com.twitter.chill.java
-
A kryo
Serializerfor unmodifiable lists created viaCollections.unmodifiableList(List). - UnmodifiableListSerializer() - Constructor for class com.twitter.chill.java.UnmodifiableListSerializer
- UnmodifiableMapSerializer - Class in com.twitter.chill.java
-
A kryo
Serializerfor unmodifiable maps created viaCollections.unmodifiableMap(Map). - UnmodifiableMapSerializer() - Constructor for class com.twitter.chill.java.UnmodifiableMapSerializer
- UnmodifiableSetSerializer - Class in com.twitter.chill.java
-
A kryo
Serializerfor unmodifiable sets created viaCollections.unmodifiableSet(Set). - UnmodifiableSetSerializer() - Constructor for class com.twitter.chill.java.UnmodifiableSetSerializer
- UnmodifiableSortedMapSerializer - Class in com.twitter.chill.java
-
A kryo
Serializerfor unmodifiable sortable maps created viaCollections.unmodifiableSortedMap(SortedMap). - UnmodifiableSortedMapSerializer() - Constructor for class com.twitter.chill.java.UnmodifiableSortedMapSerializer
- UnmodifiableSortedSetSerializer - Class in com.twitter.chill.java
-
A kryo
Serializerfor unmodifiable sortable sets created viaCollections.unmodifiableSortedSet(SortedSet). - UnmodifiableSortedSetSerializer() - Constructor for class com.twitter.chill.java.UnmodifiableSortedSetSerializer
- URISerializer - Class in com.twitter.chill.java
- URISerializer() - Constructor for class com.twitter.chill.java.URISerializer
- URL_SAFE - Static variable in class com.twitter.chill.Base64
-
Encode using Base64-like encoding that is URL- and Filename-safe as described in Section 4 of RFC3548: http://www.faqs.org/rfcs/rfc3548.html.
- UUIDSerializer - Class in com.twitter.chill.java
- UUIDSerializer() - Constructor for class com.twitter.chill.java.UUIDSerializer
W
- withBuffer(int, KryoInstantiator, int, int) - Static method in class com.twitter.chill.KryoPool
-
Output is created with new Output(outBufferMin, outBufferMax);
- withByteArrayOutputStream(int, KryoInstantiator) - Static method in class com.twitter.chill.KryoPool
-
Output is created with new Output(new ByteArrayOutputStream()) This will automatically resize internally
- withRegistrar(IKryoRegistrar) - Method in class com.twitter.chill.KryoInstantiator
- write(byte[], int, int) - Method in class com.twitter.chill.Base64.OutputStream
-
Calls
Base64.OutputStream.write(int)repeatedly until len bytes are written. - write(int) - Method in class com.twitter.chill.Base64.OutputStream
-
Writes the byte to the output stream after converting to/from Base64 notation.
- write(Kryo, Output, IterableRegistrar) - Method in class com.twitter.chill.java.IterableRegistrarSerializer
- write(Kryo, Output, InetSocketAddress) - Method in class com.twitter.chill.java.InetSocketAddressSerializer
- write(Kryo, Output, URI) - Method in class com.twitter.chill.java.URISerializer
- write(Kryo, Output, Date) - Method in class com.twitter.chill.java.SqlDateSerializer
- write(Kryo, Output, Time) - Method in class com.twitter.chill.java.SqlTimeSerializer
- write(Kryo, Output, Timestamp) - Method in class com.twitter.chill.java.TimestampSerializer
- write(Kryo, Output, BitSet) - Method in class com.twitter.chill.java.BitSetSerializer
- write(Kryo, Output, List<?>) - Method in class com.twitter.chill.java.ArraysAsListSerializer
- write(Kryo, Output, Pattern) - Method in class com.twitter.chill.java.RegexSerializer
- write(Kryo, Output, UUID) - Method in class com.twitter.chill.java.UUIDSerializer
- write(Kryo, Output, Set<?>) - Method in class com.twitter.chill.java.UnmodifiableSetSerializer
- writeClassAndObject(Object) - Method in class com.twitter.chill.SerDeState
- writeObject(Object) - Method in class com.twitter.chill.SerDeState
- writeOutputTo(OutputStream) - Method in class com.twitter.chill.SerDeState
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form