Package parser
Enum Parser_Result
- java.lang.Object
-
- java.lang.Enum<Parser_Result>
-
- parser.Parser_Result
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Parser_Result>,java.lang.constant.Constable
public enum Parser_Result extends java.lang.Enum<Parser_Result>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INCOMPLETE_PARAMSINVALID_FUNCTIONNULL_ERRORPARENTHESES_ERRORSTRANGE_INPUTSYNTAX_ERRORVALID
-
Method Summary
Modifier and Type Method Description static Parser_ResultvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Parser_Result[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SYNTAX_ERROR
public static final Parser_Result SYNTAX_ERROR
-
INVALID_FUNCTION
public static final Parser_Result INVALID_FUNCTION
-
INCOMPLETE_PARAMS
public static final Parser_Result INCOMPLETE_PARAMS
-
PARENTHESES_ERROR
public static final Parser_Result PARENTHESES_ERROR
-
NULL_ERROR
public static final Parser_Result NULL_ERROR
-
STRANGE_INPUT
public static final Parser_Result STRANGE_INPUT
-
VALID
public static final Parser_Result VALID
-
-
Method Detail
-
values
public static Parser_Result[] values()
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Parser_Result valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-