public enum JPRAResolverErrorCode extends Enum<JPRAResolverErrorCode>
| Enum Constant and Description |
|---|
EXPECTED_PACKAGE
A package was expected but not provided before EOF.
|
NO_CURRENT_PACKAGE
A package must be in the process of being declared to perform this action.
|
PACKAGE_DUPLICATE
A duplicate package was specified.
|
PACKAGE_IMPORT_CONFLICT
An imported package conflicts with an existing import.
|
PACKAGE_LOADING_ERROR
A package could not be loaded.
|
PACKAGE_NESTED
Nested packages are not allowed.
|
PACKAGE_NONEXISTENT
An attempt was made to import a nonexistent package.
|
PACKAGE_REFERENCE_NONEXISTENT
A reference was made using a nonexistent package name.
|
TYPE_DUPLICATE
A duplicate type was specified.
|
TYPE_NONEXISTENT
A reference was made to a nonexistent type.
|
UNEXPECTED_EOF
Unexpected encountered EOF.
|
UNEXPECTED_PACKAGE
An unexpected package was specified.
|
| Modifier and Type | Method and Description |
|---|---|
static JPRAResolverErrorCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JPRAResolverErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JPRAResolverErrorCode NO_CURRENT_PACKAGE
public static final JPRAResolverErrorCode PACKAGE_NESTED
public static final JPRAResolverErrorCode PACKAGE_IMPORT_CONFLICT
public static final JPRAResolverErrorCode TYPE_DUPLICATE
public static final JPRAResolverErrorCode PACKAGE_NONEXISTENT
public static final JPRAResolverErrorCode PACKAGE_LOADING_ERROR
public static final JPRAResolverErrorCode PACKAGE_REFERENCE_NONEXISTENT
public static final JPRAResolverErrorCode TYPE_NONEXISTENT
public static final JPRAResolverErrorCode UNEXPECTED_EOF
public static final JPRAResolverErrorCode UNEXPECTED_PACKAGE
public static final JPRAResolverErrorCode EXPECTED_PACKAGE
public static final JPRAResolverErrorCode PACKAGE_DUPLICATE
public static JPRAResolverErrorCode[] values()
for (JPRAResolverErrorCode c : JPRAResolverErrorCode.values()) System.out.println(c);
public static JPRAResolverErrorCode 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 © 2015 <code@io7m.com> http://io7m.com