public static enum RestfulRequest.DomainModel extends Enum<RestfulRequest.DomainModel>
| Enum Constant and Description |
|---|
FORMAL |
NONE |
SELECTABLE |
SIMPLE |
| Modifier and Type | Method and Description |
|---|---|
static Parser<RestfulRequest.DomainModel> |
parser() |
String |
toString() |
static RestfulRequest.DomainModel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RestfulRequest.DomainModel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RestfulRequest.DomainModel NONE
public static final RestfulRequest.DomainModel SIMPLE
public static final RestfulRequest.DomainModel FORMAL
public static final RestfulRequest.DomainModel SELECTABLE
public static RestfulRequest.DomainModel[] values()
for (RestfulRequest.DomainModel c : RestfulRequest.DomainModel.values()) System.out.println(c);
public static RestfulRequest.DomainModel 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 Parser<RestfulRequest.DomainModel> parser()
public String toString()
toString in class Enum<RestfulRequest.DomainModel>Copyright © 2010–2014 The Apache Software Foundation. All rights reserved.