Package org.apache.iceberg.avro
Class AvroSchemaVisitor<T>
- java.lang.Object
- 
- org.apache.iceberg.avro.AvroSchemaVisitor<T>
 
- 
- Direct Known Subclasses:
- RemoveIds
 
 public abstract class AvroSchemaVisitor<T> extends java.lang.Object
- 
- 
Constructor SummaryConstructors Constructor Description AvroSchemaVisitor()
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Tarray(org.apache.avro.Schema array, T element)protected java.util.Deque<java.lang.String>fieldNames()Tmap(org.apache.avro.Schema map, T value)Tprimitive(org.apache.avro.Schema primitive)Trecord(org.apache.avro.Schema record, java.util.List<java.lang.String> names, java.util.List<T> fields)Tunion(org.apache.avro.Schema union, java.util.List<T> options)static <T> Tvisit(org.apache.avro.Schema schema, AvroSchemaVisitor<T> visitor)
 
- 
- 
- 
Method Detail- 
visitpublic static <T> T visit(org.apache.avro.Schema schema, AvroSchemaVisitor<T> visitor)
 - 
fieldNamesprotected java.util.Deque<java.lang.String> fieldNames() 
 - 
recordpublic T record(org.apache.avro.Schema record, java.util.List<java.lang.String> names, java.util.List<T> fields) 
 - 
primitivepublic T primitive(org.apache.avro.Schema primitive) 
 
- 
 
-