public enum RamlParsingContextType extends Enum<RamlParsingContextType>
| Enum Constant and Description |
|---|
ANY |
FUNCTION_CALL |
HEADER |
ITEM |
LIBRARY_CALL |
STRING_TEMPLATE |
VALUE |
| Modifier and Type | Method and Description |
|---|---|
static RamlParsingContextType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RamlParsingContextType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RamlParsingContextType FUNCTION_CALL
public static final RamlParsingContextType LIBRARY_CALL
public static final RamlParsingContextType VALUE
public static final RamlParsingContextType ITEM
public static final RamlParsingContextType STRING_TEMPLATE
public static final RamlParsingContextType HEADER
public static final RamlParsingContextType ANY
public static RamlParsingContextType[] values()
for (RamlParsingContextType c : RamlParsingContextType.values()) System.out.println(c);
public static RamlParsingContextType 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. All rights reserved.