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