Package org.apache.iceberg.orc
Class OrcSchemaWithTypeVisitor<T>
- java.lang.Object
-
- org.apache.iceberg.orc.OrcSchemaWithTypeVisitor<T>
-
public abstract class OrcSchemaWithTypeVisitor<T> extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description OrcSchemaWithTypeVisitor()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description T
list(Types.ListType iList, org.apache.orc.TypeDescription array, T element)
T
map(Types.MapType iMap, org.apache.orc.TypeDescription map, T key, T value)
T
primitive(Type.PrimitiveType iPrimitive, org.apache.orc.TypeDescription primitive)
T
record(Types.StructType iStruct, org.apache.orc.TypeDescription record, java.util.List<java.lang.String> names, java.util.List<T> fields)
static <T> T
visit(Schema iSchema, org.apache.orc.TypeDescription schema, OrcSchemaWithTypeVisitor<T> visitor)
static <T> T
visit(Type iType, org.apache.orc.TypeDescription schema, OrcSchemaWithTypeVisitor<T> visitor)
-
-
-
Method Detail
-
visit
public static <T> T visit(Schema iSchema, org.apache.orc.TypeDescription schema, OrcSchemaWithTypeVisitor<T> visitor)
-
visit
public static <T> T visit(Type iType, org.apache.orc.TypeDescription schema, OrcSchemaWithTypeVisitor<T> visitor)
-
record
public T record(Types.StructType iStruct, org.apache.orc.TypeDescription record, java.util.List<java.lang.String> names, java.util.List<T> fields)
-
list
public T list(Types.ListType iList, org.apache.orc.TypeDescription array, T element)
-
map
public T map(Types.MapType iMap, org.apache.orc.TypeDescription map, T key, T value)
-
primitive
public T primitive(Type.PrimitiveType iPrimitive, org.apache.orc.TypeDescription primitive)
-
-