Uses of Interface
org.apache.avro.io.DatumWriter

Packages that use DatumWriter
org.apache.avro.file A container file for Avro data. 
org.apache.avro.generic A generic representation for Avro data. 
org.apache.avro.reflect Use Java reflection to generate schemas and protocols for existing classes. 
org.apache.avro.specific Generate specific Java classes for schemas and protocols. 
 

Uses of DatumWriter in org.apache.avro.file
 

Constructors in org.apache.avro.file with parameters of type DatumWriter
DataFileWriter(Schema schema, OutputStream outs, DatumWriter<D> dout)
          Construct a writer to a file for data matching a schema.
 

Uses of DatumWriter in org.apache.avro.generic
 

Classes in org.apache.avro.generic that implement DatumWriter
 class GenericDatumWriter<D>
          DatumWriter for generic Java objects.
 

Uses of DatumWriter in org.apache.avro.reflect
 

Classes in org.apache.avro.reflect that implement DatumWriter
 class ReflectDatumWriter
          DatumWriter for existing classes via Java reflection.
 

Methods in org.apache.avro.reflect that return DatumWriter
protected  DatumWriter<Object> ReflectResponder.getDatumWriter(Schema schema)
           
protected  DatumWriter<Object> ReflectRequestor.getDatumWriter(Schema schema)
           
 

Uses of DatumWriter in org.apache.avro.specific
 

Classes in org.apache.avro.specific that implement DatumWriter
 class SpecificDatumWriter
          DatumWriter for generated Java classes.
 

Methods in org.apache.avro.specific that return DatumWriter
protected  DatumWriter<Object> SpecificRequestor.getDatumWriter(Schema schema)
           
protected  DatumWriter<Object> SpecificResponder.getDatumWriter(Schema schema)
           
 



Copyright © 2009 The Apache Software Foundation