public enum JPRAParseErrorCode extends Enum<JPRAParseErrorCode>
| Enum Constant and Description |
|---|
BAD_FIELD_NAME
An invalid field name was specified.
|
BAD_PACKAGE_NAME
An invalid package name was specified.
|
BAD_TYPE_NAME
An invalid type name was specified.
|
BAD_TYPE_REFERENCE
An invalid type reference was specified.
|
DUPLICATE_FIELD_NAME
A type declaration contained a duplicate field.
|
EXPECTED_LIST_GOT_QUOTED_STRING
A quoted string was specified where a list was expected.
|
EXPECTED_LIST_GOT_SYMBOL
A symbol was specified where a list was expected.
|
EXPECTED_NON_EMPTY_LIST
An empty list was specified where a non-empty list was required.
|
EXPECTED_SYMBOL_GOT_LIST
A list was specified where a symbol was expected.
|
EXPECTED_SYMBOL_GOT_QUOTED_STRING
A quoted string was specified where a symbol was expected.
|
EXPECTED_SYMBOL_OR_LIST_GOT_QUOTED_STRING
A symbol or list was expected, but a quoted string was specified.
|
INVALID_INTEGER_CONSTANT
A malformed integer constant was specified.
|
SYNTAX_ERROR
A syntax error for a specific expression was encountered.
|
UNRECOGNIZED_INTEGER_TYPE_KEYWORD
An unrecognized integer type keyword was encountered.
|
UNRECOGNIZED_KEYWORD
An unrecognized keyword was specified.
|
UNRECOGNIZED_PACKED_FIELD_KEYWORD
An unrecognized packed field keyword was specified.
|
UNRECOGNIZED_RECORD_FIELD_KEYWORD
An unrecognized record field keyword was specified.
|
UNRECOGNIZED_SIZE_FUNCTION
An unrecognized size function was specified.
|
UNRECOGNIZED_TYPE_KEYWORD
An unrecognized type keyword was specified.
|
| Modifier and Type | Method and Description |
|---|---|
static JPRAParseErrorCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JPRAParseErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JPRAParseErrorCode EXPECTED_LIST_GOT_QUOTED_STRING
public static final JPRAParseErrorCode EXPECTED_LIST_GOT_SYMBOL
public static final JPRAParseErrorCode EXPECTED_SYMBOL_GOT_LIST
public static final JPRAParseErrorCode EXPECTED_SYMBOL_GOT_QUOTED_STRING
public static final JPRAParseErrorCode UNRECOGNIZED_KEYWORD
public static final JPRAParseErrorCode EXPECTED_NON_EMPTY_LIST
public static final JPRAParseErrorCode BAD_PACKAGE_NAME
public static final JPRAParseErrorCode SYNTAX_ERROR
public static final JPRAParseErrorCode UNRECOGNIZED_TYPE_KEYWORD
public static final JPRAParseErrorCode UNRECOGNIZED_INTEGER_TYPE_KEYWORD
public static final JPRAParseErrorCode EXPECTED_SYMBOL_OR_LIST_GOT_QUOTED_STRING
public static final JPRAParseErrorCode INVALID_INTEGER_CONSTANT
public static final JPRAParseErrorCode UNRECOGNIZED_SIZE_FUNCTION
public static final JPRAParseErrorCode BAD_FIELD_NAME
public static final JPRAParseErrorCode DUPLICATE_FIELD_NAME
public static final JPRAParseErrorCode BAD_TYPE_NAME
public static final JPRAParseErrorCode UNRECOGNIZED_RECORD_FIELD_KEYWORD
public static final JPRAParseErrorCode BAD_TYPE_REFERENCE
public static final JPRAParseErrorCode UNRECOGNIZED_PACKED_FIELD_KEYWORD
public static JPRAParseErrorCode[] values()
for (JPRAParseErrorCode c : JPRAParseErrorCode.values()) System.out.println(c);
public static JPRAParseErrorCode 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