public enum ApplicationUserStatus extends Enum<ApplicationUserStatus>
| Modifier and Type | Method and Description |
|---|---|
boolean |
isEnabled() |
static ApplicationUserStatus |
parse(Boolean enabled) |
String |
toString() |
static ApplicationUserStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApplicationUserStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApplicationUserStatus ENABLED
public static final ApplicationUserStatus DISABLED
public static ApplicationUserStatus[] values()
for (ApplicationUserStatus c : ApplicationUserStatus.values()) System.out.println(c);
public static ApplicationUserStatus 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 static ApplicationUserStatus parse(Boolean enabled)
public String toString()
toString in class Enum<ApplicationUserStatus>public boolean isEnabled()
Copyright © 2010–2020 The Apache Software Foundation. All rights reserved.