public enum LocationKind extends Enum<LocationKind>
| Enum Constant and Description |
|---|
APISTRUCTURE |
DECLARATIONS |
MODELS |
| Modifier and Type | Method and Description |
|---|---|
static LocationKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LocationKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LocationKind APISTRUCTURE
public static final LocationKind DECLARATIONS
public static final LocationKind MODELS
public static LocationKind[] values()
for (LocationKind c : LocationKind.values()) System.out.println(c);
public static LocationKind 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.