public enum Dynamicity extends Enum<Dynamicity>
| Enum Constant and Description |
|---|
FULLY_DYNAMIC
This value can change at any time during the life of the service instance
|
STATIC
This value will not change over the life of the service instance
|
| Modifier and Type | Method and Description |
|---|---|
static Dynamicity |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Dynamicity[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Dynamicity STATIC
public static final Dynamicity FULLY_DYNAMIC
public static Dynamicity[] values()
for (Dynamicity c : Dynamicity.values()) System.out.println(c);
public static Dynamicity 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 © 2009–2017 Oracle Corporation. All rights reserved.