UserProperties
Inheritance: java.lang.Object, java.util.Dictionary, java.util.Hashtable, java.util.Properties
public class UserProperties extends Properties
Special property class which allows typed properties to be set and returned. It also allows the hookup of two default property objects to be searched if this property object does not contain the property.
Constructors
Constructor | Description |
---|---|
UserProperties() | Initializes an empty instance of UserProperties class. |
UserProperties(Properties defaults) | Initializes an of UserProperties class with default values. |
UserProperties(Properties defaults, Properties altDefaults) | Constructs UserProperties with a defaults and altDefaults table, which are searched in that order. |
Methods
UserProperties()
public UserProperties()
Initializes an empty instance of UserProperties class.
UserProperties(Properties defaults)
public UserProperties(Properties defaults)
Initializes an of UserProperties class with default values.
Parameters:
Parameter | Type | Description |
---|---|---|
defaults | java.util.Properties | Default properties values. |
UserProperties(Properties defaults, Properties altDefaults)
public UserProperties(Properties defaults, Properties altDefaults)
Constructs UserProperties with a defaults and altDefaults table, which are searched in that order.
Parameters:
Parameter | Type | Description |
---|---|---|
defaults | java.util.Properties | Default properties. |
altDefaults | java.util.Properties | Alternative default properties. |
clear()
public synchronized void clear()
clone()
public synchronized Object clone()
Returns: java.lang.Object
compute(K arg0, BiFunction<? super K,? super V,? extends V> arg1)
public synchronized V compute(K arg0, BiFunction<? super K,? super V,? extends V> arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | K | |
arg1 | java.util.function.BiFunction<? super K,? super V,? extends V> |
Returns: V
compute(Object arg0, BiFunction arg1)
public synchronized Object compute(Object arg0, BiFunction<? super Object,? super Object,?> arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.lang.Object | |
arg1 | java.util.function.BiFunction |
Returns: java.lang.Object
computeIfAbsent(K arg0, Function<? super K,? extends V> arg1)
public synchronized V computeIfAbsent(K arg0, Function<? super K,? extends V> arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | K | |
arg1 | java.util.function.Function<? super K,? extends V> |
Returns: V
computeIfAbsent(Object arg0, Function arg1)
public synchronized Object computeIfAbsent(Object arg0, Function<? super Object,?> arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.lang.Object | |
arg1 | java.util.function.Function |
Returns: java.lang.Object
computeIfPresent(K arg0, BiFunction<? super K,? super V,? extends V> arg1)
public synchronized V computeIfPresent(K arg0, BiFunction<? super K,? super V,? extends V> arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | K | |
arg1 | java.util.function.BiFunction<? super K,? super V,? extends V> |
Returns: V
computeIfPresent(Object arg0, BiFunction arg1)
public synchronized Object computeIfPresent(Object arg0, BiFunction<? super Object,? super Object,?> arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.lang.Object | |
arg1 | java.util.function.BiFunction |
Returns: java.lang.Object
contains(Object arg0)
public boolean contains(Object arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.lang.Object |
Returns: boolean
containsKey(Object arg0)
public boolean containsKey(Object arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.lang.Object |
Returns: boolean
containsValue(Object arg0)
public boolean containsValue(Object arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.lang.Object |
Returns: boolean
elements()
public Enumeration<Object> elements()
Returns: java.util.Enumeration<java.lang.Object>
entrySet()
public Set<Map.Entry<Object,Object>> entrySet()
Returns: java.util.Set<java.util.Map.Entry<java.lang.Object,java.lang.Object»
equals(Object arg0)
public synchronized boolean equals(Object arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.lang.Object |
Returns: boolean
forEach(BiConsumer<? super K,? super V> arg0)
public synchronized void forEach(BiConsumer<? super K,? super V> arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.util.function.BiConsumer<? super K,? super V> |
forEach(BiConsumer<? super Object,? super Object> arg0)
public synchronized void forEach(BiConsumer<? super Object,? super Object> arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.util.function.BiConsumer<? super java.lang.Object,? super java.lang.Object> |
get(Object arg0)
public Object get(Object arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.lang.Object |
Returns: java.lang.Object
getClass()
public final native Class<?> getClass()
Returns: java.lang.Class
getOrDefault(Object arg0, V arg1)
public synchronized V getOrDefault(Object arg0, V arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.lang.Object | |
arg1 | V |
Returns: V
getOrDefault(Object arg0, Object arg1)
public Object getOrDefault(Object arg0, Object arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.lang.Object | |
arg1 | java.lang.Object |
Returns: java.lang.Object
getProperty(String key)
public String getProperty(String key)
Gets string property value.
Parameters:
Parameter | Type | Description |
---|---|---|
key | java.lang.String | The name of property. |
Returns: java.lang.String - Property value.
getProperty(String key, String def)
public String getProperty(String key, String def)
Gets string property value. If requested property is absent, returns provided default value.
Parameters:
Parameter | Type | Description |
---|---|---|
key | java.lang.String | The name of property. |
def | java.lang.String | Default value of property. |
Returns: java.lang.String - Property value.
getPropertyColor(String key)
public Color getPropertyColor(String key)
Gets color property value.
Parameters:
Parameter | Type | Description |
---|---|---|
key | java.lang.String | The name of property. |
Returns: java.awt.Color - Property value.
getPropertyColor(String key, Color def)
public Color getPropertyColor(String key, Color def)
Gets color property value. If requested property is absent, returns provided default value.
Parameters:
Parameter | Type | Description |
---|---|---|
key | java.lang.String | The name of property. |
def | java.awt.Color | Default value of property. |
Returns: java.awt.Color - Property value.
getPropertyDimension(String key)
public Dimension getPropertyDimension(String key)
Gets dimension property value.
Parameters:
Parameter | Type | Description |
---|---|---|
key | java.lang.String | The name of property. |
Returns: java.awt.Dimension - Property value.
getPropertyDimension(String key, Dimension def)
public Dimension getPropertyDimension(String key, Dimension def)
Gets dimension property value. If requested property is absent, returns provided default value.
Parameters:
Parameter | Type | Description |
---|---|---|
key | java.lang.String | The name of property. |
def | java.awt.Dimension | Default value of property. |
Returns: java.awt.Dimension - Property value.
getPropertyDouble(String key)
public double getPropertyDouble(String key)
Gets double property value.
Parameters:
Parameter | Type | Description |
---|---|---|
key | java.lang.String | The name of property. |
Returns: double - Property value.
getPropertyDouble(String key, double def)
public double getPropertyDouble(String key, double def)
Gets double property value. If requested property is absent, returns provided default value.
Parameters:
Parameter | Type | Description |
---|---|---|
key | java.lang.String | The name of property. |
def | double | Default value of property. |
Returns: double - Property value.
getPropertyFloat(String key)
public float getPropertyFloat(String key)
Gets float property value.
Parameters:
Parameter | Type | Description |
---|---|---|
key | java.lang.String | The name of property. |
Returns: float - Property value.
getPropertyFloat(String key, float def)
public float getPropertyFloat(String key, float def)
Gets float property value. If requested property is absent, returns provided default value.
Parameters:
Parameter | Type | Description |
---|---|---|
key | java.lang.String | The name of property. |
def | float | Default value of property. |
Returns: float - Property value.
getPropertyInsets(String key)
public Insets getPropertyInsets(String key)
Gets insets property value.
Parameters:
Parameter | Type | Description |
---|---|---|
key | java.lang.String | The name of property. |
Returns: java.awt.Insets - Property value.
getPropertyInsets(String key, Insets def)
public Insets getPropertyInsets(String key, Insets def)
Gets insets property value. If requested property is absent, returns provided default value.
Parameters:
Parameter | Type | Description |
---|---|---|
key | java.lang.String | The name of property. |
def | java.awt.Insets | Default value of property. |
Returns: java.awt.Insets - Property value.
getPropertyInt(String key)
public int getPropertyInt(String key)
Gets integer property value.
Parameters:
Parameter | Type | Description |
---|---|---|
key | java.lang.String | The name of property. |
Returns: int - Property value.
getPropertyInt(String key, int def)
public int getPropertyInt(String key, int def)
Gets integer property value. If requested property is absent, returns provided default value.
Parameters:
Parameter | Type | Description |
---|---|---|
key | java.lang.String | The name of property. |
def | int | Default value of property. |
Returns: int - Property value.
getPropertyMatrix(String key)
public AffineTransform getPropertyMatrix(String key)
Gets float property value.
Parameters:
Parameter | Type | Description |
---|---|---|
key | java.lang.String | The name of property. |
Returns: java.awt.geom.AffineTransform - Property value.
getPropertyMatrix(String key, AffineTransform def)
public AffineTransform getPropertyMatrix(String key, AffineTransform def)
Gets float property value. If requested property is absent, returns provided default value.
Parameters:
Parameter | Type | Description |
---|---|---|
key | java.lang.String | The name of property. |
def | java.awt.geom.AffineTransform | Default value of property. |
Returns: java.awt.geom.AffineTransform - Property value.
getPropertyRectangle(String key)
public Rectangle getPropertyRectangle(String key)
Gets rectangle property value.
Parameters:
Parameter | Type | Description |
---|---|---|
key | java.lang.String | The name of property. |
Returns: java.awt.Rectangle - Property value.
getPropertyRectangle(String key, Rectangle def)
public Rectangle getPropertyRectangle(String key, Rectangle def)
Gets rectangle property value. If requested property is absent, returns provided default value.
Parameters:
Parameter | Type | Description |
---|---|---|
key | java.lang.String | The name of property. |
def | java.awt.Rectangle | Default value of property. |
Returns: java.awt.Rectangle - Property value.
getPropertyStringArray(String key)
public String[] getPropertyStringArray(String key)
Gets string array property value.
Parameters:
Parameter | Type | Description |
---|---|---|
key | java.lang.String | The name of property. |
Returns: java.lang.String[] - Property value.
getPropertyStringArray(String key, String[] def)
public String[] getPropertyStringArray(String key, String[] def)
Gets string array property value. If requested property is absent, returns provided default value.
Parameters:
Parameter | Type | Description |
---|---|---|
key | java.lang.String | The name of property. |
def | java.lang.String[] | Default value of property. |
Returns: java.lang.String[] - Property value.
hashCode()
public synchronized int hashCode()
Returns: int
isEmpty()
public boolean isEmpty()
Returns: boolean
isProperty(String key)
public boolean isProperty(String key)
Gets boolean property value.
Parameters:
Parameter | Type | Description |
---|---|---|
key | java.lang.String | The name of property. |
Returns: boolean - Property value.
isProperty(String key, boolean def)
public boolean isProperty(String key, boolean def)
Gets boolean property value. If requested property is absent, returns provided default value.
Parameters:
Parameter | Type | Description |
---|---|---|
key | java.lang.String | The name of property. |
def | boolean | Default value of property. |
Returns: boolean - Property value.
keySet()
public Set<Object> keySet()
Returns: java.util.Set<java.lang.Object>
keys()
public Enumeration<Object> keys()
Returns: java.util.Enumeration<java.lang.Object>
list(PrintStream arg0)
public void list(PrintStream arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.io.PrintStream |
list(PrintWriter arg0)
public void list(PrintWriter arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.io.PrintWriter |
load(InputStream arg0)
public synchronized void load(InputStream arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.io.InputStream |
load(Reader arg0)
public synchronized void load(Reader arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.io.Reader |
loadFromXML(InputStream arg0)
public synchronized void loadFromXML(InputStream arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.io.InputStream |
merge(K arg0, V arg1, BiFunction<? super V,? super V,? extends V> arg2)
public synchronized V merge(K arg0, V arg1, BiFunction<? super V,? super V,? extends V> arg2)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | K | |
arg1 | V | |
arg2 | java.util.function.BiFunction<? super V,? super V,? extends V> |
Returns: V
merge(Object arg0, Object arg1, BiFunction arg2)
public synchronized Object merge(Object arg0, Object arg1, BiFunction<? super Object,? super Object,?> arg2)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.lang.Object | |
arg1 | java.lang.Object | |
arg2 | java.util.function.BiFunction |
Returns: java.lang.Object
notify()
public final native void notify()
notifyAll()
public final native void notifyAll()
printProperties()
public void printProperties()
Prints all set properties.
propertyNames()
public Enumeration propertyNames()
Returns properties names.
Returns: java.util.Enumeration - Enumeration of properties names.
put(K arg0, V arg1)
public synchronized V put(K arg0, V arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | K | |
arg1 | V |
Returns: V
put(Object arg0, Object arg1)
public synchronized Object put(Object arg0, Object arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.lang.Object | |
arg1 | java.lang.Object |
Returns: java.lang.Object
putAll(Map<? extends K,? extends V> arg0)
public synchronized void putAll(Map<? extends K,? extends V> arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.util.Map<? extends K,? extends V> |
putAll(Map arg0)
public synchronized void putAll(Map<?,?> arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.util.Map |
putIfAbsent(K arg0, V arg1)
public synchronized V putIfAbsent(K arg0, V arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | K | |
arg1 | V |
Returns: V
putIfAbsent(Object arg0, Object arg1)
public synchronized Object putIfAbsent(Object arg0, Object arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.lang.Object | |
arg1 | java.lang.Object |
Returns: java.lang.Object
remove(Object arg0)
public synchronized Object remove(Object arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.lang.Object |
Returns: java.lang.Object
remove(Object arg0, Object arg1)
public synchronized boolean remove(Object arg0, Object arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.lang.Object | |
arg1 | java.lang.Object |
Returns: boolean
replace(K arg0, V arg1)
public synchronized V replace(K arg0, V arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | K | |
arg1 | V |
Returns: V
replace(K arg0, V arg1, V arg2)
public synchronized boolean replace(K arg0, V arg1, V arg2)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | K | |
arg1 | V | |
arg2 | V |
Returns: boolean
replace(Object arg0, Object arg1)
public synchronized Object replace(Object arg0, Object arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.lang.Object | |
arg1 | java.lang.Object |
Returns: java.lang.Object
replace(Object arg0, Object arg1, Object arg2)
public synchronized boolean replace(Object arg0, Object arg1, Object arg2)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.lang.Object | |
arg1 | java.lang.Object | |
arg2 | java.lang.Object |
Returns: boolean
replaceAll(BiFunction<? super K,? super V,? extends V> arg0)
public synchronized void replaceAll(BiFunction<? super K,? super V,? extends V> arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.util.function.BiFunction<? super K,? super V,? extends V> |
replaceAll(BiFunction arg0)
public synchronized void replaceAll(BiFunction<? super Object,? super Object,?> arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.util.function.BiFunction |
save(OutputStream arg0, String arg1)
public void save(OutputStream arg0, String arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.io.OutputStream | |
arg1 | java.lang.String |
setProperties(Properties properties)
public void setProperties(Properties properties)
Copies properties, including its defaults into this UserProperties
Parameters:
Parameter | Type | Description |
---|---|---|
properties | java.util.Properties | Properties. |
setProperty(String key, boolean value)
public Object setProperty(String key, boolean value)
Sets boolean property value.
Parameters:
Parameter | Type | Description |
---|---|---|
key | java.lang.String | The name of property. |
value | boolean | The value of property. |
Returns: java.lang.Object - A property.
setProperty(String key, double value)
public Object setProperty(String key, double value)
Sets double property value.
Parameters:
Parameter | Type | Description |
---|---|---|
key | java.lang.String | The name of property. |
value | double | The value of property. |
Returns: java.lang.Object - A property.
setProperty(String key, float value)
public Object setProperty(String key, float value)
Sets float property value.
Parameters:
Parameter | Type | Description |
---|---|---|
key | java.lang.String | The name of property. |
value | float | The value of property. |
Returns: java.lang.Object - A property.
setProperty(String key, int value)
public Object setProperty(String key, int value)
Sets integer property value.
Parameters:
Parameter | Type | Description |
---|---|---|
key | java.lang.String | The name of property. |
value | int | The value of property. |
Returns: java.lang.Object - A property.
setProperty(String key, Color value)
public Object setProperty(String key, Color value)
Sets color property value.
Parameters:
Parameter | Type | Description |
---|---|---|
key | java.lang.String | The name of property. |
value | java.awt.Color | The value of property. |
Returns: java.lang.Object - A property.
setProperty(String key, Dimension value)
public Object setProperty(String key, Dimension value)
Sets dimension property value.
Parameters:
Parameter | Type | Description |
---|---|---|
key | java.lang.String | The name of property. |
value | java.awt.Dimension | The value of property. |
Returns: java.lang.Object - A property.
setProperty(String key, Insets value)
public Object setProperty(String key, Insets value)
Sets insets property value.
Parameters:
Parameter | Type | Description |
---|---|---|
key | java.lang.String | The name of property. |
value | java.awt.Insets | The value of property. |
Returns: java.lang.Object - A property.
setProperty(String key, Rectangle value)
public Object setProperty(String key, Rectangle value)
Sets rectangle property value.
Parameters:
Parameter | Type | Description |
---|---|---|
key | java.lang.String | The name of property. |
value | java.awt.Rectangle | The value of property. |
Returns: java.lang.Object - A property.
setProperty(String key, AffineTransform value)
public Object setProperty(String key, AffineTransform value)
Sets matrix property value.
Parameters:
Parameter | Type | Description |
---|---|---|
key | java.lang.String | The name of property. |
value | java.awt.geom.AffineTransform | The value of property. |
Returns: java.lang.Object - A property.
setProperty(String key, String value)
public Object setProperty(String key, String value)
Sets string property value.
Parameters:
Parameter | Type | Description |
---|---|---|
key | java.lang.String | The name of property. |
value | java.lang.String | The value of property. |
Returns: java.lang.Object - A property.
setProperty(String key, String[] value)
public Object setProperty(String key, String[] value)
Sets string array property value.
Parameters:
Parameter | Type | Description |
---|---|---|
key | java.lang.String | The name of property. |
value | java.lang.String[] | The value of property. |
Returns: java.lang.Object - A property.
setProperty(Properties properties, String key, boolean value)
public static Object setProperty(Properties properties, String key, boolean value)
Sets boolean property value in specified properties table.
Parameters:
Parameter | Type | Description |
---|---|---|
properties | java.util.Properties | The properties table. |
key | java.lang.String | The name of property. |
value | boolean | The value of property. |
Returns: java.lang.Object - A property.
setProperty(Properties properties, String key, double value)
public static Object setProperty(Properties properties, String key, double value)
Sets double property value in specified properties table.
Parameters:
Parameter | Type | Description |
---|---|---|
properties | java.util.Properties | The properties table. |
key | java.lang.String | The name of property. |
value | double | The value of property. |
Returns: java.lang.Object - A property.
setProperty(Properties properties, String key, float value)
public static Object setProperty(Properties properties, String key, float value)
Sets float property value in specified properties table.
Parameters:
Parameter | Type | Description |
---|---|---|
properties | java.util.Properties | The properties table. |
key | java.lang.String | The name of property. |
value | float | The value of property. |
Returns: java.lang.Object - A property.
setProperty(Properties properties, String key, int value)
public static Object setProperty(Properties properties, String key, int value)
Sets integer property value in specified properties table.
Parameters:
Parameter | Type | Description |
---|---|---|
properties | java.util.Properties | The properties table. |
key | java.lang.String | The name of property. |
value | int | The value of property. |
Returns: java.lang.Object - A property.
setProperty(Properties properties, String key, Color value)
public static Object setProperty(Properties properties, String key, Color value)
Sets color property value in specified properties table.
Parameters:
Parameter | Type | Description |
---|---|---|
properties | java.util.Properties | The properties table. |
key | java.lang.String | The name of property. |
value | java.awt.Color | The value of property. |
Returns: java.lang.Object - A property.
setProperty(Properties properties, String key, Dimension value)
public static Object setProperty(Properties properties, String key, Dimension value)
Sets dimension property value in specified properties table.
Parameters:
Parameter | Type | Description |
---|---|---|
properties | java.util.Properties | The properties table. |
key | java.lang.String | The name of property. |
value | java.awt.Dimension | The value of property. |
Returns: java.lang.Object - A property.
setProperty(Properties properties, String key, Insets value)
public static Object setProperty(Properties properties, String key, Insets value)
Sets insets property value in specified properties table.
Parameters:
Parameter | Type | Description |
---|---|---|
properties | java.util.Properties | The properties table. |
key | java.lang.String | The name of property. |
value | java.awt.Insets | The value of property. |
Returns: java.lang.Object - A property.
setProperty(Properties properties, String key, Rectangle value)
public static Object setProperty(Properties properties, String key, Rectangle value)
Sets rectangle property value in specified properties table.
Parameters:
Parameter | Type | Description |
---|---|---|
properties | java.util.Properties | The properties table. |
key | java.lang.String | The name of property. |
value | java.awt.Rectangle | The value of property. |
Returns: java.lang.Object - A property.
setProperty(Properties properties, String key, AffineTransform value)
public static Object setProperty(Properties properties, String key, AffineTransform value)
Sets matrix property value in specified properties table.
Parameters:
Parameter | Type | Description |
---|---|---|
properties | java.util.Properties | The properties table. |
key | java.lang.String | The name of property. |
value | java.awt.geom.AffineTransform | The value of property. |
Returns: java.lang.Object - A property.
setProperty(Properties properties, String key, String[] value)
public static Object setProperty(Properties properties, String key, String[] value)
Sets string array property value in specified properties table.
Parameters:
Parameter | Type | Description |
---|---|---|
properties | java.util.Properties | The properties table. |
key | java.lang.String | The name of property. |
value | java.lang.String[] | The value of property. |
Returns: java.lang.Object - A property.
size()
public int size()
Returns: int
store(OutputStream arg0, String arg1)
public void store(OutputStream arg0, String arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.io.OutputStream | |
arg1 | java.lang.String |
store(Writer arg0, String arg1)
public void store(Writer arg0, String arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.io.Writer | |
arg1 | java.lang.String |
storeToXML(OutputStream arg0, String arg1)
public void storeToXML(OutputStream arg0, String arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.io.OutputStream | |
arg1 | java.lang.String |
storeToXML(OutputStream arg0, String arg1, String arg2)
public void storeToXML(OutputStream arg0, String arg1, String arg2)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.io.OutputStream | |
arg1 | java.lang.String | |
arg2 | java.lang.String |
storeToXML(OutputStream arg0, String arg1, Charset arg2)
public void storeToXML(OutputStream arg0, String arg1, Charset arg2)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.io.OutputStream | |
arg1 | java.lang.String | |
arg2 | java.nio.charset.Charset |
stringPropertyNames()
public Set<String> stringPropertyNames()
Returns: java.util.Set<java.lang.String>
toString()
public synchronized String toString()
Returns: java.lang.String
values()
public Collection<Object> values()
Returns: java.util.Collection<java.lang.Object>
wait()
public final void wait()
wait(long arg0)
public final native void wait(long arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | long |
wait(long arg0, int arg1)
public final void wait(long arg0, int arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | long | |
arg1 | int |