public static enum PropertyInfo.Edit extends java.lang.Enum<PropertyInfo.Edit>
Enum Constant and Description |
---|
Always
Can always be interactively edited.
|
Never
Should not be interactively edited.
|
Single
Can be interactively edited only for a single host at a time
|
Modifier and Type | Method and Description |
---|---|
static PropertyInfo.Edit |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PropertyInfo.Edit[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyInfo.Edit Always
public static final PropertyInfo.Edit Single
public static final PropertyInfo.Edit Never
public static PropertyInfo.Edit[] values()
for (PropertyInfo.Edit c : PropertyInfo.Edit.values()) System.out.println(c);
public static PropertyInfo.Edit valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null