Serializable, Comparable<JOParserErrorCode>public enum JOParserErrorCode extends Enum<JOParserErrorCode>
| Enum Constant | Description |
|---|---|
JOP_ERROR_BAD_COMMAND_SYNTAX |
Incorrect syntax was used for a particular command.
|
JOP_ERROR_BAD_VERTEX_SYNTAX |
Bad syntax was specified for a vertex.
|
JOP_ERROR_NONEXISTENT_V |
A reference was made to a nonexistent
v element. |
JOP_ERROR_NONEXISTENT_VN |
A reference was made to a nonexistent
vn element. |
JOP_ERROR_NONEXISTENT_VT |
A reference was made to a nonexistent
vt element. |
JOP_ERROR_UNRECOGNIZED_COMMAND |
An unrecognized command was specified.
|
| Modifier and Type | Method | Description |
|---|---|---|
static JOParserErrorCode |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static JOParserErrorCode[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JOParserErrorCode JOP_ERROR_BAD_COMMAND_SYNTAX
public static final JOParserErrorCode JOP_ERROR_BAD_VERTEX_SYNTAX
public static final JOParserErrorCode JOP_ERROR_UNRECOGNIZED_COMMAND
public static final JOParserErrorCode JOP_ERROR_NONEXISTENT_V
v element.public static final JOParserErrorCode JOP_ERROR_NONEXISTENT_VT
vt element.public static final JOParserErrorCode JOP_ERROR_NONEXISTENT_VN
vn element.public static JOParserErrorCode[] values()
for (JOParserErrorCode c : JOParserErrorCode.values()) System.out.println(c);
public static JOParserErrorCode 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 © 2017 <code@io7m.com> http://io7m.com