|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
K - key typeV - value typepublic interface EMap<K,V>
EMap represents java.util.Map typed expressions
Map| Method Summary | |
|---|---|
EBoolean |
contains(Expr<K> key,
Expr<V> value)
|
EBoolean |
containsKey(Expr<K> key)
Get a this.containsKey(key) expression |
EBoolean |
containsKey(K key)
Get a this.containsKey(key) expression |
EBoolean |
containsValue(Expr<V> value)
Get a this.containsValue(value) expression |
EBoolean |
containsValue(V value)
Get a this.containsValue(value) expression |
Expr<V> |
get(Expr<K> key)
Get a this.get(key) expression |
Expr<V> |
get(K key)
Get a this.get(key) expression |
Class<K> |
getKeyType()
Get the key type for this path |
Class<V> |
getValueType()
Get the value type for this path |
EBoolean |
isEmpty()
Get the this.isEmpty() expression |
EBoolean |
isNotEmpty()
Get the ! |
ENumber<Integer> |
size()
Get the size of the Map instance |
| Method Detail |
|---|
EBoolean contains(Expr<K> key,
Expr<V> value)
key - value -
EBoolean containsKey(Expr<K> key)
this.containsKey(key) expression
key -
Map.containsKey(Object)EBoolean containsKey(K key)
this.containsKey(key) expression
key -
Map.containsKey(Object)EBoolean containsValue(Expr<V> value)
this.containsValue(value) expression
value -
Map.containsValue(Object)EBoolean containsValue(V value)
this.containsValue(value) expression
value -
Map.containsValue(Object)cExpr<V> get(Expr<K> key)
this.get(key) expression
key -
Map.get(Object)Expr<V> get(K key)
this.get(key) expression
key -
Map.get(Object)Class<K> getKeyType()
Class<V> getValueType()
EBoolean isEmpty()
this.isEmpty() expression
Map.isEmpty()EBoolean isNotEmpty()
!this.isEmpty() expression
Map.isEmpty()ENumber<Integer> size()
Map.size()
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||