public class DocumentRendererContext extends Object
HashMap for data storage.| Constructor and Description |
|---|
DocumentRendererContext()
Default constructor.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
containsKey(Object key)
Indicates whether the specified key is in the context.
|
Object |
get(String key)
Gets the value corresponding to the provided key from the context.
|
String |
getInputEncoding() |
Object[] |
getKeys()
Get all the keys for the values in the context
|
Object |
put(String key,
Object value)
Adds a name/value pair to the context.
|
Object |
remove(Object key)
Removes the value associated with the specified key from the context.
|
void |
setInputEncoding(String inputEncoding) |
public String getInputEncoding()
public void setInputEncoding(String inputEncoding)
inputEncoding - new input encoding value when processing files.public Object put(String key, Object value)
key - The name to key the provided value with.value - The corresponding value.public Object get(String key)
key - The name of the desired value.public boolean containsKey(Object key)
key - The key to look for.public Object[] getKeys()
Copyright © 2005–2020 The Apache Software Foundation. All rights reserved.