Package java.util
Class Properties
- java.lang.Object
-
- java.util.Dictionary
-
- java.util.Hashtable
-
- java.util.Properties
-
- All Implemented Interfaces:
Serializable,Cloneable,Map
- Direct Known Subclasses:
Provider
public class Properties extends Hashtable
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected Propertiesdefaults
-
Constructor Summary
Constructors Constructor Description Properties()Properties(Properties var0)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetProperty(String var0)StringgetProperty(String var0, String var1)voidlist(PrintStream var0)voidlist(PrintWriter var0)voidload(InputStream var0)EnumerationpropertyNames()voidsave(OutputStream var0, String var1)ObjectsetProperty(String var0, String var1)voidstore(OutputStream var0, String var1)
-
-
-
Field Detail
-
defaults
protected Properties defaults
-
-
Constructor Detail
-
Properties
public Properties()
-
Properties
public Properties(Properties var0)
-
-
Method Detail
-
list
public void list(PrintStream var0)
-
list
public void list(PrintWriter var0)
-
load
public void load(InputStream var0) throws IOException
- Throws:
IOException
-
propertyNames
public Enumeration propertyNames()
-
save
public void save(OutputStream var0, String var1)
-
store
public void store(OutputStream var0, String var1) throws IOException
- Throws:
IOException
-
-