public enum ModelLocation extends Enum<ModelLocation>
| Enum Constant and Description |
|---|
ANNOTATION |
BURI |
FORM |
HEADERS |
MODEL |
QUERY |
SECURITYSCHEMATYPE |
URI |
| Modifier and Type | Method and Description |
|---|---|
static ModelLocation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModelLocation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModelLocation QUERY
public static final ModelLocation HEADERS
public static final ModelLocation URI
public static final ModelLocation FORM
public static final ModelLocation BURI
public static final ModelLocation ANNOTATION
public static final ModelLocation MODEL
public static final ModelLocation SECURITYSCHEMATYPE
public static ModelLocation[] values()
for (ModelLocation c : ModelLocation.values()) System.out.println(c);
public static ModelLocation 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 © 2016 RAML. All rights reserved.