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