public enum ConfiguredHow extends Enum<ConfiguredHow>
| Enum Constant and Description |
|---|
ATTRIBUTE
As an XML attribute.
|
ELEMENT
An XML element.
|
HIDDEN
The property can not be set from the configuration.
|
TEXT
As XML text.
|
| Modifier and Type | Method and Description |
|---|---|
static ConfiguredHow |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfiguredHow[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfiguredHow ATTRIBUTE
public static final ConfiguredHow ELEMENT
public static final ConfiguredHow TEXT
public static final ConfiguredHow HIDDEN
public static ConfiguredHow[] values()
for (ConfiguredHow c : ConfiguredHow.values()) System.out.println(c);
public static ConfiguredHow valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2023. All rights reserved.