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.ListType
asListType()
int
elementId()
Type
elementType()
boolean
equals(java.lang.Object o)
Types.NestedField
field(int id)
java.util.List<Types.NestedField>
fields()
Type
fieldType(java.lang.String name)
int
hashCode()
boolean
isElementOptional()
boolean
isElementRequired()
boolean
isListType()
static Types.ListType
ofOptional(int elementId, Type elementType)
static Types.ListType
ofRequired(int elementId, Type elementType)
java.lang.String
toString()
Type.TypeID
typeId()
-
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:
fieldType
in classType.NestedType
-
field
public Types.NestedField field(int id)
- Specified by:
field
in classType.NestedType
-
fields
public java.util.List<Types.NestedField> fields()
- Specified by:
fields
in 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:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-