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<Map.Entry<K,V>> 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<K> 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<V> 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.
|
Expression<V> |
get(Expression<K> key)
Method returning an expression for the value of the specified key in the map.
|
Expression<V> |
get(K key)
Method returning an expression for the value of the specified key in the map.
|
BooleanExpression |
isEmpty()
Method returning whether the map is empty.
|
NumericExpression<Integer> |
size()
Method returning an expression for the size of the map
|
as, cast, count, countDistinct, eq, eq, instanceOf, ne, ne
Expression<V> get(Expression<K> key)
key
- The key expressionExpression<V> get(K key)
key
- The key expressionBooleanExpression containsKey(Expression<K> expr)
expr
- The key expressionBooleanExpression containsKey(K key)
key
- The keyBooleanExpression containsValue(Expression<V> expr)
expr
- The value expressionBooleanExpression containsValue(V value)
value
- The valueBooleanExpression containsEntry(Expression<Map.Entry<K,V>> expr)
expr
- The entry expressionBooleanExpression containsEntry(Map.Entry<K,V> entry)
entry
- The entry expressionBooleanExpression isEmpty()
NumericExpression<Integer> size()
Copyright © 2005–1970 Apache Software Foundation. All rights reserved.