| Interface | Description |
|---|---|
| InputTypeConfigurable |
OutputFormats can implement this interface to be configured
with the data type they will operate on. |
| ResultTypeQueryable<T> |
This interface can be implemented by functions and input formats to tell the framework
about their produced data type.
|
| Class | Description |
|---|---|
| AvroTypeInfo<T extends org.apache.avro.specific.SpecificRecordBase> |
Special type information to generate a special AvroTypeInfo for Avro POJOs (implementing SpecificRecordBase, the typed Avro POJOs)
Proceeding: It uses a regular pojo type analysis and replaces all
GenericType<CharSequence>
with a GenericType<avro.Utf8>. |
| EitherTypeInfo<L,R> |
A
TypeInformation for the Either type of the Java API. |
| EitherTypeInfoFactory<L,R> | |
| EnumTypeInfo<T extends Enum<T>> |
A
TypeInformation for java enumeration types. |
| GenericTypeInfo<T> | |
| ListTypeInfo<T> |
A
TypeInformation for the list types of the Java API. |
| MapTypeInfo<K,V> |
Special
TypeInformation used by MapStateDescriptor. |
| MissingTypeInfo |
A special type information signifying that the type extraction failed.
|
| ObjectArrayTypeInfo<T,C> | |
| PojoField |
Represent a field definition for
PojoTypeInfo type of objects. |
| PojoTypeInfo<T> |
TypeInformation for "Java Beans"-style types.
|
| PojoTypeInfo.NamedFlatFieldDescriptor | |
| RowTypeInfo |
TypeInformation for
Row |
| TupleTypeInfo<T extends Tuple> |
A
TypeInformation for the tuple types of the Java API. |
| TupleTypeInfoBase<T> | |
| TypeExtractionUtils | |
| TypeExtractionUtils.LambdaExecutable |
Similar to a Java 8 Executable but with a return type.
|
| TypeExtractor |
A utility for reflection analysis on classes, to determine the return type of implementations of transformation
functions.
|
| TypeInfoParser | |
| ValueTypeInfo<T extends Value> |
Type information for data types that extend the
Value interface. |
| Exception | Description |
|---|---|
| TypeExtractionException |
Type extraction always contains some uncertainty due to unpredictable JVM differences
between vendors or versions.
|
Copyright © 2014–2017 The Apache Software Foundation. All rights reserved.