public abstract class LazyExtentMap<CLS,E> extends Object implements Map<CLS,Set<E>>
Note that this implementation violates the contract of the
Map API as follows:
Map.entrySet() method does not return entries
for any keys that have not already been queried via the
Map.get(java.lang.Object) methodMap.keySet()
and Map.values() methods also are not complete
See the Environment class for a description of the
generic type parameters of this class.
| Constructor and Description |
|---|
LazyExtentMap(EObject context)
Initializes me with the context element of an OCL
expression evaluation.
|
| Modifier and Type | Method and Description |
|---|---|
void |
clear() |
boolean |
containsKey(Object key) |
boolean |
containsValue(Object value) |
Set<Map.Entry<CLS,Set<E>>> |
entrySet() |
boolean |
equals(Object obj) |
Set<E> |
get(Object key)
Lazily computes the extent of the specified class
key. |
int |
hashCode() |
boolean |
isEmpty() |
protected abstract boolean |
isInstance(CLS cls,
E element)
Implemented by subclasses to determine whether the specified element
is an instance of the specified class, according to the metamodel
semantics implemented by the environment that created this extent map.
|
Set<CLS> |
keySet() |
Set<E> |
put(CLS key,
Set<E> value) |
void |
putAll(Map<? extends CLS,? extends Set<E>> t) |
Set<E> |
remove(Object key) |
int |
size() |
String |
toString() |
Collection<Set<E>> |
values() |
clone, finalize, getClass, notify, notifyAll, wait, wait, waitcompute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAllpublic LazyExtentMap(EObject context)
context - my context elementprotected abstract boolean isInstance(CLS cls, E element)
cls - a class in the modelelement - a potential run-time (M0) instance of that classtrue if this element is an instance of the given
class; false otherwisepublic boolean containsKey(Object key)
containsKey in interface Map<CLS,Set<E>>public boolean containsValue(Object value)
containsValue in interface Map<CLS,Set<E>>public boolean equals(Object obj)
public int hashCode()
Copyright © 2015 Open eHealth Foundation. All rights reserved.