T - the type of the elements of the iterables being transcodedpublic class IterableCoder<T> extends IterableLikeCoder<T,java.lang.Iterable<T>>
Coder.Context, Coder.NonDeterministicException| Modifier | Constructor and Description | 
|---|---|
| protected  | IterableCoder(Coder<T> elemCoder) | 
| Modifier and Type | Method and Description | 
|---|---|
| protected java.lang.Iterable<T> | decodeToIterable(java.util.List<T> decodedElements)Builds an instance of  IterableT, this coder's associatedIterable-like subtype,
 from a list of decoded elements. | 
| TypeDescriptor<java.lang.Iterable<T>> | getEncodedTypeDescriptor()Returns the  TypeDescriptorfor the type encoded. | 
| static <T> IterableCoder<T> | of(Coder<T> elemCoder) | 
| java.lang.Object | structuralValue(java.lang.Iterable<T> value)Returns an object with an  Object.equals()method that represents structural equality on
 the argument. | 
decode, encode, getCoderArguments, getElemCoder, isRegisterByteSizeObserverCheap, registerByteSizeObserver, verifyDeterministicequals, getComponents, hashCode, toStringconsistentWithEquals, decode, encode, getEncodedElementByteSize, verifyDeterministic, verifyDeterministicpublic static <T> IterableCoder<T> of(Coder<T> elemCoder)
public java.lang.Object structuralValue(java.lang.Iterable<T> value)
CoderObject.equals() method that represents structural equality on
 the argument.
 For any two values x and y of type T, if their encoded bytes are the
 same, then it must be the case that structuralValue(x).equals(structuralValue(y)).
 
Most notably:
null should be a proper object with an
       equals() method, even if the input value is null.
 See also Coder.consistentWithEquals().
 
By default, if this coder is Coder.consistentWithEquals(), and the value is not null,
 returns the provided object. Otherwise, encodes the value into a byte[], and returns an
 object that performs array equality on the encoded bytes.
structuralValue in class Coder<java.lang.Iterable<T>>protected final java.lang.Iterable<T> decodeToIterable(java.util.List<T> decodedElements)
IterableLikeCoderIterableT, this coder's associated Iterable-like subtype,
 from a list of decoded elements.decodeToIterable in class IterableLikeCoder<T,java.lang.Iterable<T>>public TypeDescriptor<java.lang.Iterable<T>> getEncodedTypeDescriptor()
CoderTypeDescriptor for the type encoded.getEncodedTypeDescriptor in class Coder<java.lang.Iterable<T>>