Serializable, Comparable<RecurringTokenPrivilege>public enum RecurringTokenPrivilege extends Enum<RecurringTokenPrivilege>
| Modifier and Type | Method | Description |
|---|---|---|
static RecurringTokenPrivilege |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static RecurringTokenPrivilege[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName("none")
public static final RecurringTokenPrivilege NONE
@SerializedName("bounded")
public static final RecurringTokenPrivilege BOUNDED
@SerializedName("infinite")
public static final RecurringTokenPrivilege INFINITE
public static RecurringTokenPrivilege[] values()
for (RecurringTokenPrivilege c : RecurringTokenPrivilege.values()) System.out.println(c);
public static RecurringTokenPrivilege 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 © 2018 The Apache Software Foundation. All rights reserved.