public enum Stability extends Enum<Stability>
Enum Constant and Description |
---|
DEPRECATED
Deprecated API, that should not be used and may be removed in the future.
|
EVOLVING
Evolving API that may changed at any time.
|
INTERNAL
Internal API that may change or be removed at any time.
|
REMOVED
Removed API, that remains available for some technical reason and may return an error if used.
|
STABLE
Stable API (default), suggested for use by all clients.
|
Modifier and Type | Method and Description |
---|---|
static Stability |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Stability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Stability STABLE
public static final Stability INTERNAL
public static final Stability EVOLVING
public static final Stability DEPRECATED
public static final Stability REMOVED
public static Stability[] values()
for (Stability c : Stability.values()) System.out.println(c);
public static Stability 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 © 2010-2018, ForgeRock All Rights Reserved.