public enum BackgroundRequestType extends Enum<BackgroundRequestType>
| Enum Constant and Description |
|---|
BACKGROUND |
| Modifier and Type | Method and Description |
|---|---|
static BackgroundRequestType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BackgroundRequestType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BackgroundRequestType BACKGROUND
public static BackgroundRequestType[] values()
for (BackgroundRequestType c : BackgroundRequestType.values()) System.out.println(c);
public static BackgroundRequestType 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 © 2020. All Rights Reserved.