Method propertyNames()
Return type:
java.util.Enumeration
<Enumeration<?>>
Member of:
java.util.Properties
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
return params.propertyNames();
2
return list.propertyNames();
3
java.util.Enumeration propNames = props.propertyNames();
4
Enumeration keys = props.stringProps.propertyNames();
5
for(Enumeration e = statusProp.propertyNames(); e.hasMoreElements();)
6
Enumeration keys = suidProperties.propertyNames();
7
Enumeration enum = properties.propertyNames();
8
for (Enumeration pne=props.propertyNames();
9
for (Enumeration e = o.getProperties().propertyNames();
10
Enumeration e = props.propertyNames();
11
for (Enumeration enum = sys.propertyNames(); enum.hasMoreElements();) {
12
final Enumeration names = method_props.propertyNames();
13
Enumeration e = ((Properties)wrapped).propertyNames();
14
Enumeration keys = p.propertyNames ();
15
Enumeration propNames = props.propertyNames();
16
for (Enumeration e = stemp.propertyNames() ; e.hasMoreElements() ;) {
17
Enumeration enum = prm.propertyNames();
18
Enumeration e = props.propertyNames();
19
Enumeration en = props.propertyNames(); // turn it into an enumeration
20
final Enumeration propertyNames = propertyNames();
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.