public static enum BaseModel.ErrorType extends Enum<BaseModel.ErrorType>
| Enum Constant and Description |
|---|
ONE_REQUIRED |
REQUIRED |
| Modifier and Type | Method and Description |
|---|---|
static BaseModel.ErrorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BaseModel.ErrorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BaseModel.ErrorType REQUIRED
public static final BaseModel.ErrorType ONE_REQUIRED
public static BaseModel.ErrorType[] values()
for (BaseModel.ErrorType c : BaseModel.ErrorType.values()) System.out.println(c);
public static BaseModel.ErrorType 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 © 2013–2014 CodeLutin. All rights reserved.