public enum IssueCode extends Enum<IssueCode>
| Modifier and Type | Method and Description |
|---|---|
static IssueCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IssueCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IssueCode UNRESOLVED_REFERENCE
public static final IssueCode YAML_ERROR
public static final IssueCode UNKNOWN_NODE
public static final IssueCode MISSING_REQUIRED_PROPERTY
public static final IssueCode PROPERTY_EXPECT_TO_HAVE_SINGLE_VALUE
public static final IssueCode KEY_SHOULD_BE_UNIQUE_INTHISCONTEXT
public static final IssueCode UNABLE_TO_RESOLVE_INCLUDE_FILE
public static final IssueCode INVALID_VALUE_SCHEMA
public static final IssueCode MISSED_CONTEXT_REQUIREMENT
public static final IssueCode NODE_HAS_VALUE
public static final IssueCode ONLY_OVERRIDE_ALLOWED
public static IssueCode[] values()
for (IssueCode c : IssueCode.values()) System.out.println(c);
public static IssueCode 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.