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 Properties
defaults
-
Constructor Summary
Constructors Constructor Description Properties()
Properties(Properties var0)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getProperty(String var0)
String
getProperty(String var0, String var1)
void
list(PrintStream var0)
void
list(PrintWriter var0)
void
load(InputStream var0)
Enumeration
propertyNames()
void
save(OutputStream var0, String var1)
Object
setProperty(String var0, String var1)
void
store(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
-
-