public enum ChangePolicy extends java.lang.Enum<ChangePolicy>
| Enum Constant and Description |
|---|
DYNAMIC
Property will change on the next access
|
REQUIRES_APP_RESTART
Property will change when an application is restated, server is
restarted, or application is redeployed
|
REQUIRES_SERVER_RESTART
Property will change when server is restarted or an application is
redeployed.
|
| Modifier and Type | Method and Description |
|---|---|
static ChangePolicy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChangePolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChangePolicy DYNAMIC
public static final ChangePolicy REQUIRES_APP_RESTART
public static final ChangePolicy REQUIRES_SERVER_RESTART
public static ChangePolicy[] values()
for (ChangePolicy c : ChangePolicy.values()) System.out.println(c);
public static ChangePolicy 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