Package org.apache.iceberg.types
Class Types.ListType
- java.lang.Object
-
- org.apache.iceberg.types.Type.NestedType
-
- org.apache.iceberg.types.Types.ListType
-
- All Implemented Interfaces:
java.io.Serializable,Type
- Enclosing class:
- Types
public static class Types.ListType extends Type.NestedType
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.iceberg.types.Type
Type.NestedType, Type.PrimitiveType, Type.TypeID
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Types.ListTypeasListType()intelementId()TypeelementType()booleanequals(java.lang.Object o)Types.NestedFieldfield(int id)java.util.List<Types.NestedField>fields()TypefieldType(java.lang.String name)inthashCode()booleanisElementOptional()booleanisElementRequired()booleanisListType()static Types.ListTypeofOptional(int elementId, Type elementType)static Types.ListTypeofRequired(int elementId, Type elementType)java.lang.StringtoString()Type.TypeIDtypeId()-
Methods inherited from class org.apache.iceberg.types.Type.NestedType
asNestedType, isNestedType
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.iceberg.types.Type
asMapType, asPrimitiveType, asStructType, isMapType, isPrimitiveType, isStructType
-
-
-
-
Method Detail
-
ofOptional
public static Types.ListType ofOptional(int elementId, Type elementType)
-
ofRequired
public static Types.ListType ofRequired(int elementId, Type elementType)
-
elementType
public Type elementType()
-
fieldType
public Type fieldType(java.lang.String name)
- Specified by:
fieldTypein classType.NestedType
-
field
public Types.NestedField field(int id)
- Specified by:
fieldin classType.NestedType
-
fields
public java.util.List<Types.NestedField> fields()
- Specified by:
fieldsin classType.NestedType
-
elementId
public int elementId()
-
isElementRequired
public boolean isElementRequired()
-
isElementOptional
public boolean isElementOptional()
-
typeId
public Type.TypeID typeId()
-
isListType
public boolean isListType()
-
asListType
public Types.ListType asListType()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
-