public enum ApiSubscriptions extends java.lang.Enum<ApiSubscriptions>
| Enum Constant and Description |
|---|
ALL_TENANTS |
CURRENT_TENANT |
SPECIFIC_TENANTS |
| Modifier and Type | Method and Description |
|---|---|
static ApiSubscriptions |
parse(java.lang.String name) |
static ApiSubscriptions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ApiSubscriptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApiSubscriptions CURRENT_TENANT
public static final ApiSubscriptions ALL_TENANTS
public static final ApiSubscriptions SPECIFIC_TENANTS
public static ApiSubscriptions[] values()
for (ApiSubscriptions c : ApiSubscriptions.values()) System.out.println(c);
public static ApiSubscriptions valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static ApiSubscriptions parse(java.lang.String name)