public enum StabilityLevel extends Enum<StabilityLevel>
| Enum Constant and Description |
|---|
EVOLVING
The interface might eventually become Standard or Stable but is
still in transition.
|
EXTERNAL
The interface is controlled by an entity other than Sun.
|
INTERNAL
The interface is private to DTrace and represents an implementation
detail of DTrace.
|
OBSOLETE
The interface is supported in the current release but is scheduled
to be removed, most likely in a future minor release.
|
PRIVATE
The interface is private to Sun for use by other Sun products.
|
STABLE
The interface is a mature interface under Sun's control.
|
STANDARD
The interface complies with an industry standard.
|
UNSTABLE
The interface gives developers early access to new or
rapidly changing technology or to an implementation artifact that is
essential for observing or debugging system behavior.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getEncoding() |
static StabilityLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StabilityLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StabilityLevel INTERNAL
public static final StabilityLevel PRIVATE
public static final StabilityLevel OBSOLETE
public static final StabilityLevel EXTERNAL
public static final StabilityLevel UNSTABLE
public static final StabilityLevel EVOLVING
public static final StabilityLevel STABLE
public static final StabilityLevel STANDARD
public static StabilityLevel[] values()
for (StabilityLevel c : StabilityLevel.values()) System.out.println(c);
public static StabilityLevel 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 nullpublic int getEncoding()
Copyright © 2012. All Rights Reserved.