Class MissingTypeInfo
- java.lang.Object
-
- org.apache.flink.api.common.typeinfo.TypeInformation<InvalidTypesException>
-
- org.apache.flink.api.java.typeutils.MissingTypeInfo
-
- All Implemented Interfaces:
Serializable
public class MissingTypeInfo extends TypeInformation<InvalidTypesException>
A special type information signifying that the type extraction failed. It contains additional error information.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MissingTypeInfo(String functionName)MissingTypeInfo(String functionName, InvalidTypesException typeException)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancanEqual(Object obj)Returns true if the given object can be equaled with this object.TypeSerializer<InvalidTypesException>createSerializer(ExecutionConfig executionConfig)Creates a serializer for the type.booleanequals(Object obj)intgetArity()Gets the arity of this type - the number of fields without nesting.StringgetFunctionName()intgetTotalFields()Gets the number of logical fields in this type.Class<InvalidTypesException>getTypeClass()Gets the class of the type represented by this type information.InvalidTypesExceptiongetTypeException()inthashCode()booleanisBasicType()Checks if this type information represents a basic type.booleanisKeyType()Checks whether this type can be used as a key.booleanisTupleType()Checks if this type information represents a Tuple type.StringtoString()-
Methods inherited from class org.apache.flink.api.common.typeinfo.TypeInformation
getGenericParameters, isSortKeyType, of, of
-
-
-
-
Constructor Detail
-
MissingTypeInfo
public MissingTypeInfo(String functionName)
-
MissingTypeInfo
public MissingTypeInfo(String functionName, InvalidTypesException typeException)
-
-
Method Detail
-
getFunctionName
public String getFunctionName()
-
getTypeException
public InvalidTypesException getTypeException()
-
isBasicType
public boolean isBasicType()
Description copied from class:TypeInformationChecks if this type information represents a basic type. Basic types are defined inBasicTypeInfoand are primitives, their boxing types, Strings, Date, Void, ...- Specified by:
isBasicTypein classTypeInformation<InvalidTypesException>- Returns:
- True, if this type information describes a basic type, false otherwise.
-
isTupleType
public boolean isTupleType()
Description copied from class:TypeInformationChecks if this type information represents a Tuple type. Tuple types are subclasses of the Java API tuples.- Specified by:
isTupleTypein classTypeInformation<InvalidTypesException>- Returns:
- True, if this type information describes a tuple type, false otherwise.
-
getArity
public int getArity()
Description copied from class:TypeInformationGets the arity of this type - the number of fields without nesting.- Specified by:
getArityin classTypeInformation<InvalidTypesException>- Returns:
- Gets the number of fields in this type without nesting.
-
getTypeClass
public Class<InvalidTypesException> getTypeClass()
Description copied from class:TypeInformationGets the class of the type represented by this type information.- Specified by:
getTypeClassin classTypeInformation<InvalidTypesException>- Returns:
- The class of the type represented by this type information.
-
isKeyType
public boolean isKeyType()
Description copied from class:TypeInformationChecks whether this type can be used as a key. As a bare minimum, types have to be hashable and comparable to be keys.- Specified by:
isKeyTypein classTypeInformation<InvalidTypesException>- Returns:
- True, if the type can be used as a key, false otherwise.
-
createSerializer
public TypeSerializer<InvalidTypesException> createSerializer(ExecutionConfig executionConfig)
Description copied from class:TypeInformationCreates a serializer for the type. The serializer may use the ExecutionConfig for parameterization.- Specified by:
createSerializerin classTypeInformation<InvalidTypesException>- Parameters:
executionConfig- The config used to parameterize the serializer.- Returns:
- A serializer for this type.
-
toString
public String toString()
- Specified by:
toStringin classTypeInformation<InvalidTypesException>
-
equals
public boolean equals(Object obj)
- Specified by:
equalsin classTypeInformation<InvalidTypesException>
-
hashCode
public int hashCode()
- Specified by:
hashCodein classTypeInformation<InvalidTypesException>
-
canEqual
public boolean canEqual(Object obj)
Description copied from class:TypeInformationReturns true if the given object can be equaled with this object. If not, it returns false.- Specified by:
canEqualin classTypeInformation<InvalidTypesException>- Parameters:
obj- Object which wants to take part in the equality relation- Returns:
- true if obj can be equaled with this, otherwise false
-
getTotalFields
public int getTotalFields()
Description copied from class:TypeInformationGets the number of logical fields in this type. This includes its nested and transitively nested fields, in the case of composite types. In the example above, the OuterType type has three fields in total.The total number of fields must be at least 1.
- Specified by:
getTotalFieldsin classTypeInformation<InvalidTypesException>- Returns:
- The number of fields in this type, including its sub-fields (for composite types)
-
-