Uses of Interface
org.apache.flink.types.Value
-
-
Uses of Value in org.apache.flink.api.common.aggregators
Classes in org.apache.flink.api.common.aggregators with type parameters of type Value Modifier and Type Interface Description interfaceAggregator<T extends Value>Aggregators are a means of aggregating values across parallel instances of a function.classAggregatorWithName<T extends Value>Simple utility class holding anAggregatorwith the name it is registered under.interfaceConvergenceCriterion<T extends Value>Used to check for convergence.Methods in org.apache.flink.api.common.aggregators with type parameters of type Value Modifier and Type Method Description <T extends Value>
voidAggregatorRegistry. registerAggregationConvergenceCriterion(String name, Aggregator<T> aggregator, ConvergenceCriterion<T> convergenceCheck) -
Uses of Value in org.apache.flink.api.common.functions
Methods in org.apache.flink.api.common.functions with type parameters of type Value Modifier and Type Method Description <T extends Value>
TIterationRuntimeContext. getPreviousIterationAggregate(String name) -
Uses of Value in org.apache.flink.api.common.typeinfo
Methods in org.apache.flink.api.common.typeinfo with type parameters of type Value Modifier and Type Method Description static <V extends Value>
TypeInformation<V>Types. VALUE(Class<V> valueType)Returns type information for Flink value types (classes that implementValue). -
Uses of Value in org.apache.flink.api.java.typeutils
Classes in org.apache.flink.api.java.typeutils with type parameters of type Value Modifier and Type Class Description classValueTypeInfo<T extends Value>Type information for data types that extend theValueinterface. -
Uses of Value in org.apache.flink.api.java.typeutils.runtime
Classes in org.apache.flink.api.java.typeutils.runtime with type parameters of type Value Modifier and Type Class Description classValueComparator<T extends Value & Comparable<T>>Comparator for all Value types that extend KeyclassValueSerializer<T extends Value>Serializer forValuetypes.static classValueSerializer.ValueSerializerSnapshot<T extends Value>ValueSerializersnapshot class. -
Uses of Value in org.apache.flink.types
Classes in org.apache.flink.types with type parameters of type Value Modifier and Type Class Description classListValue<V extends Value>Generic list base type for PACT programs that implements the Value and List interfaces.classMapValue<K extends Value,V extends Value>Generic map base type for PACT programs that implements the Value and Map interfaces.classMapValue<K extends Value,V extends Value>Generic map base type for PACT programs that implements the Value and Map interfaces.interfaceResettableValue<T extends Value>Subinterfaces of Value in org.apache.flink.types Modifier and Type Interface Description interfaceCopyableValue<T>Interface to be implemented by basic types that support to be copied efficiently.interfaceKey<T>Deprecated.The Key type is a relict of a deprecated and removed API and will be removed in future (2.0) versions as well.interfaceNormalizableKey<T>The base interface for normalizable keys.interfaceResettableValue<T extends Value>Classes in org.apache.flink.types that implement Value Modifier and Type Class Description classBooleanValueBoxed serializable and comparable boolean type, representing the primitive typeboolean.classByteValueBoxed serializable and comparable byte type, representing the primitive typebyte(signed 8 bit integer).classCharValueBoxed serializable and comparable character type, representing the primitive typechar.classDoubleValueBoxed serializable and comparable double precision floating point type, representing the primitive typedouble.classFloatValueBoxed serializable and comparable single precision floating point type, representing the primitive typefloat.classIntValueBoxed serializable and comparable integer type, representing the primitive typeint.classListValue<V extends Value>Generic list base type for PACT programs that implements the Value and List interfaces.classLongValueBoxed serializable and comparable long integer type, representing the primitive typelong.classMapValue<K extends Value,V extends Value>Generic map base type for PACT programs that implements the Value and Map interfaces.classNullValueNull base type for programs that implements the Key interface.classRecordThe Record represents a multi-valued data record.classShortValueBoxed serializable and comparable short integer type, representing the primitive typeshort.classStringValueMutable string data type that implements the Key interface.Methods in org.apache.flink.types with type parameters of type Value Modifier and Type Method Description <T extends Value>
TRecord. getField(int fieldNum, Class<T> type)Gets the field at the given position from the record.<T extends Value>
TRecord. getField(int fieldNum, T target)Gets the field at the given position.Methods in org.apache.flink.types that return Value Modifier and Type Method Description static ValueJavaToValueConverter. convertBoxedJavaType(Object boxed)Methods in org.apache.flink.types with parameters of type Value Modifier and Type Method Description voidRecord. addField(Value value)static ObjectJavaToValueConverter. convertValueType(Value value)booleanRecord. equalsFields(int[] positions, Value[] searchValues, Value[] deserializationHolders)Checks the values of this record and a given list of values at specified positions for equality.booleanRecord. getFieldInto(int fieldNum, Value target)Gets the field at the given position.booleanRecord. getFieldsInto(int[] positions, Value[] targets)Gets the fields at the given positions into an array.voidRecord. getFieldsIntoCheckingNull(int[] positions, Value[] targets)Gets the fields at the given positions into an array.voidRecord. setField(int fieldNum, Value value)Sets the field at the given position to the given value.Constructors in org.apache.flink.types with parameters of type Value Constructor Description Record(Value value)Creates a new record containing only a single field, which is the given value.Record(Value val1, Value val2)Creates a new record containing exactly two fields, which are the given values.
-