Package org.uberfire.java.nio.base
Class Properties
- java.lang.Object
-
- java.util.AbstractMap<K,V>
-
- java.util.HashMap<String,Object>
-
- org.uberfire.java.nio.base.Properties
-
- All Implemented Interfaces:
Serializable,Cloneable,Map<String,Object>
public class Properties extends HashMap<String,Object>
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class java.util.AbstractMap
AbstractMap.SimpleEntry<K extends Object,V extends Object>, AbstractMap.SimpleImmutableEntry<K extends Object,V extends Object>
-
-
Constructor Summary
Constructors Constructor Description Properties()Properties(Map<String,Object> original)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidload(InputStream in)voidload(InputStream in, boolean closeOnFinish)Objectput(String key, Object value)voidstore(OutputStream out)voidstore(OutputStream out, boolean closeOnFinish)-
Methods inherited from class java.util.HashMap
clear, clone, compute, computeIfAbsent, computeIfPresent, containsKey, containsValue, entrySet, forEach, get, getOrDefault, isEmpty, keySet, merge, putAll, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
-
Methods inherited from class java.util.AbstractMap
equals, hashCode, toString
-
-
-
-
Method Detail
-
store
public void store(OutputStream out)
-
store
public void store(OutputStream out, boolean closeOnFinish)
-
load
public void load(InputStream in)
-
load
public void load(InputStream in, boolean closeOnFinish)
-
-