T
- Java type being represented hereK
- Key type of the map being represented hereV
- Value type of the map being represented herepublic interface MapExpression<T extends Map<K,V>,K,V> extends Expression<T>
Modifier and Type | Method and Description |
---|---|
BooleanExpression |
containsEntry(Expression expr)
Method returning whether the specified entry expression is contained in this map.
|
BooleanExpression |
containsEntry(Map.Entry<K,V> entry)
Method returning whether the specified entry is contained in this map.
|
BooleanExpression |
containsKey(Expression expr)
Method returning whether the specified key expression is contained in this map.
|
BooleanExpression |
containsKey(K key)
Method returning whether the specified key is contained in this map.
|
BooleanExpression |
containsValue(Expression expr)
Method returning whether the specified value expression is contained in this map.
|
BooleanExpression |
containsValue(V value)
Method returning whether the specified value is contained in this map.
|
BooleanExpression |
isEmpty()
Method returning whether the map is empty.
|
NumericExpression<Integer> |
size()
Method returning an expression for the size of the map
|
cast, count, countDistinct, eq, eq, instanceOf, ne, ne
BooleanExpression containsKey(Expression expr)
expr
- The key expressionBooleanExpression containsKey(K key)
key
- The keyBooleanExpression containsValue(Expression expr)
expr
- The value expressionBooleanExpression containsValue(V value)
value
- The valueBooleanExpression containsEntry(Expression expr)
expr
- The entry expressionBooleanExpression containsEntry(Map.Entry<K,V> entry)
entry
- The entry expressionBooleanExpression isEmpty()
NumericExpression<Integer> size()
Copyright © 2018. All rights reserved.