Package org.apache.iceberg.types
Interface Type
- 
- All Superinterfaces:
- java.io.Serializable
 - All Known Implementing Classes:
- Type.NestedType,- Type.PrimitiveType,- Types.BinaryType,- Types.BooleanType,- Types.DateType,- Types.DecimalType,- Types.DoubleType,- Types.FixedType,- Types.FloatType,- Types.IntegerType,- Types.ListType,- Types.LongType,- Types.MapType,- Types.StringType,- Types.StructType,- Types.TimestampType,- Types.TimeType,- Types.UUIDType
 
 public interface Type extends java.io.Serializable
- 
- 
Nested Class SummaryNested Classes Modifier and Type Interface Description static classType.NestedTypestatic classType.PrimitiveTypestatic classType.TypeID
 - 
Method SummaryAll Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Types.ListTypeasListType()default Types.MapTypeasMapType()default Type.NestedTypeasNestedType()default Type.PrimitiveTypeasPrimitiveType()default Types.StructTypeasStructType()default booleanisListType()default booleanisMapType()default booleanisNestedType()default booleanisPrimitiveType()default booleanisStructType()Type.TypeIDtypeId()
 
- 
- 
- 
Method Detail- 
typeIdType.TypeID typeId() 
 - 
isPrimitiveTypedefault boolean isPrimitiveType() 
 - 
asPrimitiveTypedefault Type.PrimitiveType asPrimitiveType() 
 - 
asStructTypedefault Types.StructType asStructType() 
 - 
asListTypedefault Types.ListType asListType() 
 - 
asMapTypedefault Types.MapType asMapType() 
 - 
isNestedTypedefault boolean isNestedType() 
 - 
isStructTypedefault boolean isStructType() 
 - 
isListTypedefault boolean isListType() 
 - 
isMapTypedefault boolean isMapType() 
 - 
asNestedTypedefault Type.NestedType asNestedType() 
 
- 
 
-