public class StreamingDetectContext extends Object
Constructor and Description |
---|
StreamingDetectContext() |
Modifier and Type | Method and Description |
---|---|
<T> T |
get(Class<T> key)
Returns the object in this context that implements the given interface.
|
<T> T |
get(Class<T> key,
T defaultValue)
Returns the object in this context that implements the given interface,
or the given default value if such an object is not found.
|
void |
remove(Class key) |
<T> void |
set(Class<T> key,
T value)
Adds the given value to the context as an implementation of the given
interface.
|
public <T> void set(Class<T> key, T value)
key
- the interface implemented by the given valuevalue
- the value to be added, or null
to removepublic <T> T get(Class<T> key)
key
- the interface implemented by the requested objectnull
if not foundpublic <T> T get(Class<T> key, T defaultValue)
key
- the interface implemented by the requested objectdefaultValue
- value to return if the requested object is not foundpublic void remove(Class key)
Copyright © 2007–2021 The Apache Software Foundation. All rights reserved.