public static enum Application.EnumRole extends Enum<Application.EnumRole>
| Enum Constant and Description |
|---|
VALUE_OWNER |
VALUE_PARTNER |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static Application.EnumRole |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Application.EnumRole[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="OWNER") public static final Application.EnumRole VALUE_OWNER
@SerializedName(value="PARTNER") public static final Application.EnumRole VALUE_PARTNER
public static Application.EnumRole[] values()
for (Application.EnumRole c : Application.EnumRole.values()) System.out.println(c);
public static Application.EnumRole 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 toString()
toString in class Enum<Application.EnumRole>Copyright © 2024. All rights reserved.