Package org.apache.flink.util
Class LinkedOptionalMap.MergeResult<K,V>
- java.lang.Object
-
- org.apache.flink.util.LinkedOptionalMap.MergeResult<K,V>
-
- Enclosing class:
- LinkedOptionalMap<K,V>
public static final class LinkedOptionalMap.MergeResult<K,V> extends Object
The result of merging twoLinkedOptionalMap
s usingLinkedOptionalMap.mergeRightIntoLeft(LinkedOptionalMap, LinkedOptionalMap)
.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LinkedHashMap<K,V>
getMerged()
boolean
hasMissingKeys()
boolean
isOrderedSubset()
Returnstrue
if keyNames present at @left, appearing in prefix order at @right.Set<String>
missingKeys()
-
-
-
Method Detail
-
hasMissingKeys
public boolean hasMissingKeys()
-
getMerged
public LinkedHashMap<K,V> getMerged()
-
isOrderedSubset
public boolean isOrderedSubset()
Returnstrue
if keyNames present at @left, appearing in prefix order at @right.
-
-