public enum SupportLevel extends Enum<SupportLevel>
| Enum Constant and Description |
|---|
Experimental
An experimental entity (not feature complete) that will change API, configuration, or functionality, or even be
removed in the future.
|
Preview
A preview entity that may change API, configuration, or functionality.
|
Stable
A stable entity.
|
| Modifier and Type | Field and Description |
|---|---|
static SupportLevel |
baseStability |
| Modifier and Type | Method and Description |
|---|---|
static SupportLevel |
safeValueOf(String level) |
static SupportLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SupportLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SupportLevel Experimental
public static final SupportLevel Preview
public static final SupportLevel Stable
public static SupportLevel baseStability
public static SupportLevel[] values()
for (SupportLevel c : SupportLevel.values()) System.out.println(c);
public static SupportLevel 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 static SupportLevel safeValueOf(String level)
Apache Camel