public enum ApiStage extends Enum<ApiStage>
| Enum Constant and Description |
|---|
ALPHA |
BETA |
DEPRECATED |
GA |
PRE_ALPHA |
RC |
UNDEFINED |
| Modifier and Type | Method and Description |
|---|---|
String |
getLabel() |
static ApiStage |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApiStage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApiStage UNDEFINED
public static final ApiStage PRE_ALPHA
public static final ApiStage ALPHA
public static final ApiStage BETA
public static final ApiStage RC
public static final ApiStage GA
public static final ApiStage DEPRECATED
public static ApiStage[] values()
for (ApiStage c : ApiStage.values()) System.out.println(c);
public static ApiStage 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 String getLabel()
Copyright © 2015. All rights reserved.