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