public enum InsertUserState extends Enum<InsertUserState>
| Enum Constant and Description |
|---|
EMAIL_EXISTS
The flag that indicates that the email exists.
|
INSERT
The insert flag indicates that the user can be inserted into the database.
|
USERNAME_EXISTS
The flag that indicates that the username exists.
|
| Modifier and Type | Method and Description |
|---|---|
static InsertUserState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InsertUserState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InsertUserState EMAIL_EXISTS
public static final InsertUserState USERNAME_EXISTS
public static final InsertUserState INSERT
public static InsertUserState[] values()
for (InsertUserState c : InsertUserState.values()) System.out.println(c);
public static InsertUserState 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 © 2007–2015 Alpha Ro Group UG (haftungsbeschrÀngt). All rights reserved.