Skip navigation links
A B C D E F G H I L M O R S T U V W 

A

AbstractFieldAccessor - Class in io.cdap.common.internal.io
A base implementation of FieldAccessor that throws UnsupportedOperationException for all getter/setter methods, which are meant to be overridden by children class.
AbstractFieldAccessor(TypeToken<?>) - Constructor for class io.cdap.common.internal.io.AbstractFieldAccessor
 
AbstractSchemaGenerator - Class in io.cdap.common.internal.io
An abstract base class for generating schema.
AbstractSchemaGenerator() - Constructor for class io.cdap.common.internal.io.AbstractSchemaGenerator
 
addClass(ClassDefinition) - Method in class io.cdap.common.internal.asm.ByteCodeClassLoader
Adds a class definition for this ClassLoader.
arrayOf(Schema) - Static method in class io.cdap.common.internal.io.Schema
Creates an ARRAY Schema of the given component type.
ASMDatumWriterFactory - Class in io.cdap.common.internal.io
A factory class for creating DatumWriter instance for different data type and schema.
ASMDatumWriterFactory(FieldAccessorFactory) - Constructor for class io.cdap.common.internal.io.ASMDatumWriterFactory
 
ASMFieldAccessorFactory - Class in io.cdap.common.internal.io
A FieldAccessorFactory that uses ASM to generate a specific FieldAccessor class for each field.
ASMFieldAccessorFactory() - Constructor for class io.cdap.common.internal.io.ASMFieldAccessorFactory
 
AsyncFunctions - Class in io.cdap.common.io
Static utility methods for operating with AsyncFunction.
asyncWrap(Function<I, O>, Executor) - Static method in class io.cdap.common.io.AsyncFunctions
Converts a Function into AsyncFunction by performing the operation in the given executor.
asyncWrap(Function<I, O>) - Static method in class io.cdap.common.io.AsyncFunctions
Converts a Function into AsyncFunction by performing the operation in the same thread.

B

BinaryDecoder - Class in io.cdap.common.io
An Decoder for binary-format data.
BinaryDecoder(InputStream) - Constructor for class io.cdap.common.io.BinaryDecoder
 
BinaryEncoder - Class in io.cdap.common.io
An Encoder for binary-format data.
BinaryEncoder(OutputStream) - Constructor for class io.cdap.common.io.BinaryEncoder
 
BufferedEncoder - Class in io.cdap.common.io
A Encoder that performs all writes to in memory buffer.
BufferedEncoder(int, Function<OutputStream, Encoder>) - Constructor for class io.cdap.common.io.BufferedEncoder
 
ByteBufferInputStream - Class in io.cdap.common.io
InputStream that reads a ByteBuffer.
ByteBufferInputStream(ByteBuffer) - Constructor for class io.cdap.common.io.ByteBufferInputStream
 
ByteCodeClassLoader - Class in io.cdap.common.internal.asm
A ClassLoader for loading known bytecode.
ByteCodeClassLoader(ClassLoader) - Constructor for class io.cdap.common.internal.asm.ByteCodeClassLoader
 
bytecodes - Variable in class io.cdap.common.internal.asm.ByteCodeClassLoader
Map from class name to bytecode.

C

ClassDefinition - Class in io.cdap.common.internal.asm
Class for carrying information of the generated class.
ClassDefinition(byte[], String) - Constructor for class io.cdap.common.internal.asm.ClassDefinition
 
ClassDefinition(byte[], String, Iterable<? extends Class<?>>) - Constructor for class io.cdap.common.internal.asm.ClassDefinition
 
Codec<T> - Interface in io.cdap.common.io
Common interface representing a utility which knows how to serialize and deserialize a given type of object.
ContentProvider<T extends InputStream> - Interface in io.cdap.common
A factory for readable streams of bytes or characters.
create(TypeToken<T>, Schema) - Method in class io.cdap.common.internal.io.ASMDatumWriterFactory
Creates a DatumWriter that is able to encode given data type with the given Schema.
create(TypeToken<T>, Schema) - Method in interface io.cdap.common.internal.io.DatumReaderFactory
Creates a DatumReader that can decode object of type T.
create(TypeToken<T>, Schema) - Method in interface io.cdap.common.internal.io.DatumWriterFactory
 
create(TypeToken<T>, Schema) - Method in class io.cdap.common.internal.io.ReflectionDatumReaderFactory
 

D

DatumReader<T> - Interface in io.cdap.common.internal.io
Represents reader for decoding object.
DatumReaderFactory - Interface in io.cdap.common.internal.io
Factory for creating instance of DatumReader.
DatumWriter<T> - Interface in io.cdap.common.internal.io
Represents writer for encoding object.
DatumWriterFactory - Interface in io.cdap.common.internal.io
Factory for creating DatumWriter.
debugByteCode(ClassDefinition, PrintWriter) - Static method in class io.cdap.common.internal.asm.Debugs
 
Debugs - Class in io.cdap.common.internal.asm
Util class for debugging ASM bytecode generation.
decode(byte[]) - Method in interface io.cdap.common.io.Codec
Returns the deserialized object represented in the given byte[].
Decoder - Interface in io.cdap.common.io
Interface for decoding data.
doGenerate(TypeToken<?>, Set<String>, boolean) - Method in class io.cdap.common.internal.io.AbstractSchemaGenerator
Actual schema generation.

E

encode(T, Encoder) - Method in interface io.cdap.common.internal.io.DatumWriter
 
encode(T, Encoder) - Method in class io.cdap.common.internal.io.ReflectionDatumWriter
 
encode(T) - Method in interface io.cdap.common.io.Codec
Returns the serialized form of the given object as a byte[].
Encoder - Interface in io.cdap.common.io
Interface for encoding data.
enumWith(String...) - Static method in class io.cdap.common.internal.io.Schema
Creates a Schema of ENUM type, with the given enum values.
enumWith(Iterable<String>) - Static method in class io.cdap.common.internal.io.Schema
Creates a Schema of ENUM type, with the given enum values.
enumWith(Class<Enum<?>>) - Static method in class io.cdap.common.internal.io.Schema
Creates a Schema of ENUM type, with values extracted from the given Enum class.
equals(Object) - Method in class io.cdap.common.internal.io.Schema
 
equals(Object) - Method in class io.cdap.common.internal.io.SchemaHash
 

F

FieldAccessor - Interface in io.cdap.common.internal.io
 
FieldAccessorFactory - Interface in io.cdap.common.internal.io
 

G

generate(Type) - Method in class io.cdap.common.internal.io.AbstractSchemaGenerator
 
generate(Type, boolean) - Method in class io.cdap.common.internal.io.AbstractSchemaGenerator
 
generate(Type) - Method in interface io.cdap.common.internal.io.SchemaGenerator
Generate a Schema for the given java Type.
generate(Type, boolean) - Method in interface io.cdap.common.internal.io.SchemaGenerator
Generate a Schema for the given java Type.
generateRecord(TypeToken<?>, Set<String>, boolean) - Method in class io.cdap.common.internal.io.AbstractSchemaGenerator
Generates a RECORD schema of the given type.
generateRecord(TypeToken<?>, Set<String>, boolean) - Method in class io.cdap.common.internal.io.ReflectionSchemaGenerator
 
get(Object) - Method in class io.cdap.common.internal.io.AbstractFieldAccessor
 
get(Object) - Method in interface io.cdap.common.internal.io.FieldAccessor
 
getActualTypeArguments() - Method in class io.cdap.common.internal.io.TypeRepresentation
 
getBoolean(Object) - Method in class io.cdap.common.internal.io.AbstractFieldAccessor
 
getBoolean(Object) - Method in interface io.cdap.common.internal.io.FieldAccessor
 
getByte(Object) - Method in class io.cdap.common.internal.io.AbstractFieldAccessor
 
getByte(Object) - Method in interface io.cdap.common.internal.io.FieldAccessor
 
getBytecode() - Method in class io.cdap.common.internal.asm.ClassDefinition
 
getChar(Object) - Method in class io.cdap.common.internal.io.AbstractFieldAccessor
 
getChar(Object) - Method in interface io.cdap.common.internal.io.FieldAccessor
 
getClassName() - Method in class io.cdap.common.internal.asm.ClassDefinition
 
getClassSignature(TypeToken<?>) - Static method in class io.cdap.common.internal.asm.Signatures
 
getComponentSchema() - Method in class io.cdap.common.internal.io.Schema
 
getDouble(Object) - Method in class io.cdap.common.internal.io.AbstractFieldAccessor
 
getDouble(Object) - Method in interface io.cdap.common.internal.io.FieldAccessor
 
getEnumIndex(String) - Method in class io.cdap.common.internal.io.Schema
 
getEnumValue(int) - Method in class io.cdap.common.internal.io.Schema
 
getEnumValues() - Method in class io.cdap.common.internal.io.Schema
 
getField(String) - Method in class io.cdap.common.internal.io.Schema
Returns the record Schema.Field of the given name.
getFieldAccessor(TypeToken<?>, String) - Method in class io.cdap.common.internal.io.ASMFieldAccessorFactory
 
getFieldAccessor(TypeToken<?>, String) - Method in interface io.cdap.common.internal.io.FieldAccessorFactory
 
getFieldAccessor(TypeToken<?>, String) - Method in class io.cdap.common.internal.io.ReflectionFieldAccessorFactory
 
getFields() - Method in class io.cdap.common.internal.io.Schema
 
getFieldSignature(TypeToken<?>) - Static method in class io.cdap.common.internal.asm.Signatures
 
getFloat(Object) - Method in class io.cdap.common.internal.io.AbstractFieldAccessor
 
getFloat(Object) - Method in interface io.cdap.common.internal.io.FieldAccessor
 
getInput() - Method in interface io.cdap.common.ContentProvider
Returns an object that encapsulates a readable resource.
getInt(Object) - Method in class io.cdap.common.internal.io.AbstractFieldAccessor
 
getInt(Object) - Method in interface io.cdap.common.internal.io.FieldAccessor
 
getInternalName() - Method in class io.cdap.common.internal.asm.ClassDefinition
 
getLong(Object) - Method in class io.cdap.common.internal.io.AbstractFieldAccessor
 
getLong(Object) - Method in interface io.cdap.common.internal.io.FieldAccessor
 
getMapSchema() - Method in class io.cdap.common.internal.io.Schema
 
getMethod(Class<?>, String, Class<?>...) - Static method in class io.cdap.common.internal.asm.Methods
 
getMethodSignature(Method, TypeToken<?>...) - Static method in class io.cdap.common.internal.asm.Signatures
Generates signature for the given method.
getName() - Method in class io.cdap.common.internal.io.Schema.Field
 
getOwnerType() - Method in class io.cdap.common.internal.io.TypeRepresentation
 
getPreservedClasses() - Method in class io.cdap.common.internal.asm.ClassDefinition
Returns list of Classes that are used by the generated class which should be used as is, instead of loaded again by the ByteCodeClassLoader.
getRawType() - Method in class io.cdap.common.internal.io.TypeRepresentation
 
getRecordName() - Method in class io.cdap.common.internal.io.Schema
 
getSchema() - Method in class io.cdap.common.internal.io.ReflectionDatumWriter
 
getSchema() - Method in class io.cdap.common.internal.io.Schema.Field
 
getSchemaHash() - Method in class io.cdap.common.internal.io.Schema
 
getShort(Object) - Method in class io.cdap.common.internal.io.AbstractFieldAccessor
 
getShort(Object) - Method in interface io.cdap.common.internal.io.FieldAccessor
 
getType() - Method in class io.cdap.common.internal.io.AbstractFieldAccessor
 
getType() - Method in interface io.cdap.common.internal.io.FieldAccessor
 
getType() - Method in class io.cdap.common.internal.io.Schema
 
getUnionSchema(int) - Method in class io.cdap.common.internal.io.Schema
 
getUnionSchemas() - Method in class io.cdap.common.internal.io.Schema
 

H

hashCode() - Method in class io.cdap.common.internal.io.Schema
 
hashCode() - Method in class io.cdap.common.internal.io.SchemaHash
 

I

io.cdap.common - package io.cdap.common
 
io.cdap.common.internal.asm - package io.cdap.common.internal.asm
ASM related common classes.
io.cdap.common.internal.io - package io.cdap.common.internal.io
Common IO classes.
io.cdap.common.io - package io.cdap.common.io
 
isCompatible(Schema) - Method in class io.cdap.common.internal.io.Schema
Checks if the given target schema is compatible with this schema, meaning datum being written with this schema could be projected correctly into the given target schema.
isSimpleType() - Method in enum io.cdap.common.internal.io.Schema.Type
 

L

loadClass(String) - Method in class io.cdap.common.internal.asm.ByteCodeClassLoader
 
loadClass(String, boolean) - Method in class io.cdap.common.internal.asm.ByteCodeClassLoader
 

M

mapOf(Schema, Schema) - Static method in class io.cdap.common.internal.io.Schema
Creates a MAP Schema of the given key and value types.
Methods - Class in io.cdap.common.internal.asm
Util class containing helper functions to interact with ASM Method.

O

of(String, Schema) - Static method in class io.cdap.common.internal.io.Schema.Field
Creates a Schema.Field instance with the given name and Schema.
of(Schema.Type) - Static method in class io.cdap.common.internal.io.Schema
Creates a Schema for the given type.

R

read(Decoder, Schema) - Method in interface io.cdap.common.internal.io.DatumReader
 
read(Decoder, Schema) - Method in class io.cdap.common.internal.io.ReflectionDatumReader
 
read(JsonReader) - Method in class io.cdap.common.internal.io.SchemaTypeAdapter
 
read() - Method in class io.cdap.common.io.ByteBufferInputStream
 
read(byte[], int, int) - Method in class io.cdap.common.io.ByteBufferInputStream
 
readBool() - Method in class io.cdap.common.io.BinaryDecoder
 
readBool() - Method in interface io.cdap.common.io.Decoder
 
readBytes() - Method in class io.cdap.common.io.BinaryDecoder
 
readBytes() - Method in interface io.cdap.common.io.Decoder
 
readDouble() - Method in class io.cdap.common.io.BinaryDecoder
 
readDouble() - Method in interface io.cdap.common.io.Decoder
 
readFloat() - Method in class io.cdap.common.io.BinaryDecoder
 
readFloat() - Method in interface io.cdap.common.io.Decoder
 
readInt() - Method in class io.cdap.common.io.BinaryDecoder
 
readInt() - Method in interface io.cdap.common.io.Decoder
 
readLong() - Method in class io.cdap.common.io.BinaryDecoder
 
readLong() - Method in interface io.cdap.common.io.Decoder
 
readNull() - Method in class io.cdap.common.io.BinaryDecoder
 
readNull() - Method in interface io.cdap.common.io.Decoder
Returns a null value.
readString() - Method in class io.cdap.common.io.BinaryDecoder
 
readString() - Method in interface io.cdap.common.io.Decoder
 
recordOf(String) - Static method in class io.cdap.common.internal.io.Schema
Creates a RECORD Schema of the given name.
recordOf(String, Schema.Field...) - Static method in class io.cdap.common.internal.io.Schema
Creates a RECORD Schema with the given name and Fields.
recordOf(String, Iterable<Schema.Field>) - Static method in class io.cdap.common.internal.io.Schema
Creates a RECORD Schema with the given name and Fields.
ReflectionDatumReader<T> - Class in io.cdap.common.internal.io
Reflection based Datnum Reader.
ReflectionDatumReader(Schema, TypeToken<T>) - Constructor for class io.cdap.common.internal.io.ReflectionDatumReader
 
ReflectionDatumReaderFactory - Class in io.cdap.common.internal.io
ReflectionDatumReaderFactory() - Constructor for class io.cdap.common.internal.io.ReflectionDatumReaderFactory
 
ReflectionDatumWriter<T> - Class in io.cdap.common.internal.io
A DatumWriter that uses java reflection to encode data.
ReflectionDatumWriter(Schema) - Constructor for class io.cdap.common.internal.io.ReflectionDatumWriter
 
ReflectionFieldAccessorFactory - Class in io.cdap.common.internal.io
 
ReflectionFieldAccessorFactory() - Constructor for class io.cdap.common.internal.io.ReflectionFieldAccessorFactory
 
ReflectionSchemaGenerator - Class in io.cdap.common.internal.io
This class uses Java Reflection to inspect fields in any Java class to generate RECORD schema.
ReflectionSchemaGenerator() - Constructor for class io.cdap.common.internal.io.ReflectionSchemaGenerator
 
reset() - Method in class io.cdap.common.io.BufferedEncoder
 
reset(ByteBuffer) - Method in class io.cdap.common.io.ByteBufferInputStream
 

S

Schema - Class in io.cdap.common.internal.io
This class represents schema of data types.
Schema.Field - Class in io.cdap.common.internal.io
Represents a field inside a Schema.Type.RECORD schema.
Schema.Type - Enum in io.cdap.common.internal.io
Types known to Schema.
SchemaGenerator - Interface in io.cdap.common.internal.io
Interface for generating data Schema.
SchemaHash - Class in io.cdap.common.internal.io
 
SchemaHash(Schema) - Constructor for class io.cdap.common.internal.io.SchemaHash
 
SchemaHash(ByteBuffer) - Constructor for class io.cdap.common.internal.io.SchemaHash
Creates a SchemaHash by reading the hash value from the given ByteBuffer.
SchemaTypeAdapter - Class in io.cdap.common.internal.io
Class for serialize/deserialize Schema object to/from json through Gson.
SchemaTypeAdapter() - Constructor for class io.cdap.common.internal.io.SchemaTypeAdapter
 
set(Object, T) - Method in class io.cdap.common.internal.io.AbstractFieldAccessor
 
set(Object, T) - Method in interface io.cdap.common.internal.io.FieldAccessor
 
setBoolean(Object, boolean) - Method in class io.cdap.common.internal.io.AbstractFieldAccessor
 
setBoolean(Object, boolean) - Method in interface io.cdap.common.internal.io.FieldAccessor
 
setByte(Object, byte) - Method in class io.cdap.common.internal.io.AbstractFieldAccessor
 
setByte(Object, byte) - Method in interface io.cdap.common.internal.io.FieldAccessor
 
setChar(Object, char) - Method in class io.cdap.common.internal.io.AbstractFieldAccessor
 
setChar(Object, char) - Method in interface io.cdap.common.internal.io.FieldAccessor
 
setClassLoader(ClassLoader) - Method in class io.cdap.common.internal.io.TypeRepresentation
Set the class loader to be used by toType(), getRawType(), etc.
setDouble(Object, double) - Method in class io.cdap.common.internal.io.AbstractFieldAccessor
 
setDouble(Object, double) - Method in interface io.cdap.common.internal.io.FieldAccessor
 
setFloat(Object, float) - Method in class io.cdap.common.internal.io.AbstractFieldAccessor
 
setFloat(Object, float) - Method in interface io.cdap.common.internal.io.FieldAccessor
 
setInt(Object, int) - Method in class io.cdap.common.internal.io.AbstractFieldAccessor
 
setInt(Object, int) - Method in interface io.cdap.common.internal.io.FieldAccessor
 
setLong(Object, long) - Method in class io.cdap.common.internal.io.AbstractFieldAccessor
 
setLong(Object, long) - Method in interface io.cdap.common.internal.io.FieldAccessor
 
setShort(Object, short) - Method in class io.cdap.common.internal.io.AbstractFieldAccessor
 
setShort(Object, short) - Method in interface io.cdap.common.internal.io.FieldAccessor
 
Signatures - Class in io.cdap.common.internal.asm
Util class for generating class signature.
size() - Method in class io.cdap.common.io.BufferedEncoder
 
skip(long) - Method in class io.cdap.common.io.ByteBufferInputStream
 
skipBytes() - Method in class io.cdap.common.io.BinaryDecoder
 
skipBytes() - Method in interface io.cdap.common.io.Decoder
Skips a byte array.
skipDouble() - Method in class io.cdap.common.io.BinaryDecoder
 
skipDouble() - Method in interface io.cdap.common.io.Decoder
Skips a double.
skipFloat() - Method in class io.cdap.common.io.BinaryDecoder
 
skipFloat() - Method in interface io.cdap.common.io.Decoder
Skips a float.
skipString() - Method in class io.cdap.common.io.BinaryDecoder
 
skipString() - Method in interface io.cdap.common.io.Decoder
Skips the a string.

T

toByteArray() - Method in class io.cdap.common.internal.io.SchemaHash
 
toString() - Method in class io.cdap.common.internal.io.Schema
 
toString() - Method in class io.cdap.common.internal.io.SchemaHash
 
toType() - Method in class io.cdap.common.internal.io.TypeRepresentation
 
typeClasses - Variable in class io.cdap.common.internal.asm.ByteCodeClassLoader
 
TypeRepresentation - Class in io.cdap.common.internal.io
Helper class to represent a type parameter in a serializable form.
TypeRepresentation(Type) - Constructor for class io.cdap.common.internal.io.TypeRepresentation
Constructor from a java Type.

U

unionOf(Schema...) - Static method in class io.cdap.common.internal.io.Schema
Creates a UNION Schema which represents a union of all the given schemas.
unionOf(Iterable<Schema>) - Static method in class io.cdap.common.internal.io.Schema
Creates a UNION Schema which represents a union of all the given schemas.
UnsupportedTypeException - Exception in io.cdap.common.internal.io
Exception to indicate a given type is not supported.
UnsupportedTypeException(String) - Constructor for exception io.cdap.common.internal.io.UnsupportedTypeException
 
UnsupportedTypeException(String, Throwable) - Constructor for exception io.cdap.common.internal.io.UnsupportedTypeException
 
UnsupportedTypeException(Throwable) - Constructor for exception io.cdap.common.internal.io.UnsupportedTypeException
 

V

valueOf(String) - Static method in enum io.cdap.common.internal.io.Schema.Type
Returns the enum constant of this type with the specified name.
values() - Static method in enum io.cdap.common.internal.io.Schema.Type
Returns an array containing the constants of this enum type, in the order they are declared.
visitTypeSignature(TypeToken<?>, SignatureVisitor) - Static method in class io.cdap.common.internal.asm.Signatures
 

W

write(JsonWriter, Schema) - Method in class io.cdap.common.internal.io.SchemaTypeAdapter
 
writeBool(boolean) - Method in class io.cdap.common.io.BinaryEncoder
 
writeBool(boolean) - Method in class io.cdap.common.io.BufferedEncoder
 
writeBool(boolean) - Method in interface io.cdap.common.io.Encoder
 
writeBytes(byte[]) - Method in class io.cdap.common.io.BinaryEncoder
 
writeBytes(byte[], int, int) - Method in class io.cdap.common.io.BinaryEncoder
 
writeBytes(ByteBuffer) - Method in class io.cdap.common.io.BinaryEncoder
 
writeBytes(byte[]) - Method in class io.cdap.common.io.BufferedEncoder
 
writeBytes(byte[], int, int) - Method in class io.cdap.common.io.BufferedEncoder
 
writeBytes(ByteBuffer) - Method in class io.cdap.common.io.BufferedEncoder
 
writeBytes(byte[]) - Method in interface io.cdap.common.io.Encoder
 
writeBytes(byte[], int, int) - Method in interface io.cdap.common.io.Encoder
 
writeBytes(ByteBuffer) - Method in interface io.cdap.common.io.Encoder
Writes out the remaining bytes in ByteBuffer.
writeDouble(double) - Method in class io.cdap.common.io.BinaryEncoder
 
writeDouble(double) - Method in class io.cdap.common.io.BufferedEncoder
 
writeDouble(double) - Method in interface io.cdap.common.io.Encoder
 
writeFloat(float) - Method in class io.cdap.common.io.BinaryEncoder
 
writeFloat(float) - Method in class io.cdap.common.io.BufferedEncoder
 
writeFloat(float) - Method in interface io.cdap.common.io.Encoder
 
writeInt(int) - Method in class io.cdap.common.io.BinaryEncoder
 
writeInt(int) - Method in class io.cdap.common.io.BufferedEncoder
 
writeInt(int) - Method in interface io.cdap.common.io.Encoder
 
writeLong(long) - Method in class io.cdap.common.io.BinaryEncoder
 
writeLong(long) - Method in class io.cdap.common.io.BufferedEncoder
 
writeLong(long) - Method in interface io.cdap.common.io.Encoder
 
writeNull() - Method in class io.cdap.common.io.BinaryEncoder
 
writeNull() - Method in class io.cdap.common.io.BufferedEncoder
 
writeNull() - Method in interface io.cdap.common.io.Encoder
 
writeRaw(byte[]) - Method in class io.cdap.common.io.BufferedEncoder
Writes raw bytes to the buffer without encoding.
writeRaw(byte[], int, int) - Method in class io.cdap.common.io.BufferedEncoder
Writes raw bytes to the buffer without encoding.
writeString(String) - Method in class io.cdap.common.io.BinaryEncoder
 
writeString(String) - Method in class io.cdap.common.io.BufferedEncoder
 
writeString(String) - Method in interface io.cdap.common.io.Encoder
 
writeTo(OutputStream) - Method in class io.cdap.common.io.BufferedEncoder
Writes all the buffered bytes into the given OutputStream.
A B C D E F G H I L M O R S T U V W 
Skip navigation links

Copyright © 2019 CDAP Licensed under the Apache License, Version 2.0.