public static enum PropertySource.PropertyDomain extends java.lang.Enum<PropertySource.PropertyDomain>
| Enum Constant and Description |
|---|
AUTH
auth property domain.
|
LDAP
ldap property domain.
|
POOL
pool property domain.
|
| Modifier and Type | Field and Description |
|---|---|
private java.lang.String |
domain
properties domain.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
value()
Returns the properties domain value.
|
static PropertySource.PropertyDomain |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PropertySource.PropertyDomain[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertySource.PropertyDomain LDAP
public static final PropertySource.PropertyDomain AUTH
public static final PropertySource.PropertyDomain POOL
public static PropertySource.PropertyDomain[] values()
for (PropertySource.PropertyDomain c : PropertySource.PropertyDomain.values()) System.out.println(c);
public static PropertySource.PropertyDomain 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 nullpublic java.lang.String value()