Uses of Class
org.apache.flink.util.LinkedOptionalMap
-
Packages that use LinkedOptionalMap Package Description org.apache.flink.util -
-
Uses of LinkedOptionalMap in org.apache.flink.util
Methods in org.apache.flink.util that return LinkedOptionalMap Modifier and Type Method Description static <K,V>
LinkedOptionalMap<K,V>LinkedOptionalMap. optionalMapOf(Map<K,V> sourceMap, Function<K,String> keyNameGetter)Creates anLinkedOptionalMapfrom the provided map.static <K,V>
LinkedOptionalMap<K,V>LinkedOptionalMapSerializer. readOptionalMap(DataInputView in, org.apache.flink.util.function.BiFunctionWithException<DataInputView,String,K,IOException> keyReader, org.apache.flink.util.function.BiFunctionWithException<DataInputView,String,V,IOException> valueReader)Methods in org.apache.flink.util with parameters of type LinkedOptionalMap Modifier and Type Method Description static <K,V>
LinkedOptionalMap.MergeResult<K,V>LinkedOptionalMap. mergeRightIntoLeft(LinkedOptionalMap<K,V> left, LinkedOptionalMap<K,V> right)Tries to merges the keys and the values of @right into @left.static <K,V>
voidLinkedOptionalMapSerializer. writeOptionalMap(DataOutputView out, LinkedOptionalMap<K,V> map, org.apache.flink.util.function.BiConsumerWithException<DataOutputView,K,IOException> keyWriter, org.apache.flink.util.function.BiConsumerWithException<DataOutputView,V,IOException> valueWriter)
-