public enum LoginError extends Enum<LoginError>
| Enum Constant and Description |
|---|
UNKNOWN |
USER_NOT_EXISTS |
| Modifier and Type | Method and Description |
|---|---|
String |
getLabel() |
org.apache.wicket.model.IModel<String> |
getLabelModel() |
static LoginError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LoginError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LoginError USER_NOT_EXISTS
public static final LoginError UNKNOWN
public static LoginError[] values()
for (LoginError c : LoginError.values()) System.out.println(c);
public static LoginError 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 getLabel()
public org.apache.wicket.model.IModel<String> getLabelModel()
Copyright © 2020. All rights reserved.