public static enum LevelUpApi.Contract extends Enum<LevelUpApi.Contract>
Enum Constant and Description |
---|
DRAFT
This is a draft public API that may change.
|
ENTERPRISE
This is an API that is only available to clients in the
LevelUp Enterprise Program.
|
INTERNAL
This is a non-public API that is used internally within the LevelUp SDK.
|
PUBLIC
This is a final public API.
|
Modifier and Type | Method and Description |
---|---|
static LevelUpApi.Contract |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LevelUpApi.Contract[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LevelUpApi.Contract PUBLIC
This API is unlikely to change in future versions of the SDK.
public static final LevelUpApi.Contract DRAFT
public static final LevelUpApi.Contract INTERNAL
public static final LevelUpApi.Contract ENTERPRISE
public static LevelUpApi.Contract[] values()
for (LevelUpApi.Contract c : LevelUpApi.Contract.values()) System.out.println(c);
public static LevelUpApi.Contract 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 null