Package org.apache.flink.table.types
Interface DataTypeVisitor<R>
-
- All Known Implementing Classes:
DataTypeDefaultVisitor
,DataTypePrecisionFixer
@PublicEvolving public interface DataTypeVisitor<R>
The visitor definition ofDataType
. The visitor transforms a data type into instances ofR
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description R
visit(AtomicDataType atomicDataType)
R
visit(CollectionDataType collectionDataType)
R
visit(FieldsDataType fieldsDataType)
R
visit(KeyValueDataType keyValueDataType)
-
-
-
Method Detail
-
visit
R visit(AtomicDataType atomicDataType)
-
visit
R visit(CollectionDataType collectionDataType)
-
visit
R visit(FieldsDataType fieldsDataType)
-
visit
R visit(KeyValueDataType keyValueDataType)
-
-