public enum ApiMaturityLevel extends Enum<ApiMaturityLevel>
| Enum Constant and Description |
|---|
DEPRECATED
New things are born, old things fade away.
|
EVOLVING
New APIs start out in this state.
|
STABLE
Enough applications/users have picked up the API and we deem it stable.
|
| Modifier and Type | Method and Description |
|---|---|
static ApiMaturityLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApiMaturityLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApiMaturityLevel EVOLVING
public static final ApiMaturityLevel STABLE
public static final ApiMaturityLevel DEPRECATED
public static ApiMaturityLevel[] values()
for (ApiMaturityLevel c : ApiMaturityLevel.values()) System.out.println(c);
public static ApiMaturityLevel 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 © 2025 The Apache Software Foundation. All rights reserved.