public interface Context
Modifier and Type | Method and Description |
---|---|
boolean |
containsKey(String key)
Searches for the key in this context and its hierarchy
|
void |
destroy() |
Object |
get(String key) |
<T> T |
get(String key,
T defaultValue) |
Object |
getAt(String key) |
<T> T |
getAt(String key,
T defaultValue) |
boolean |
hasKey(String key)
Searches for the key in this context only
|
Set<String> |
keySet()
Returns a
Set view of the keys contained in this context. |
void |
put(String key,
Object value) |
void |
putAt(String key,
Object value) |
Object |
remove(String key) |
boolean containsKey(@Nonnull String key)
key
- the key to searchboolean hasKey(@Nonnull String key)
key
- the key to searchvoid destroy()