Package sqlline
Enum SqlLineParser.SqlParserState
- java.lang.Object
-
- java.lang.Enum<SqlLineParser.SqlParserState>
-
- sqlline.SqlLineParser.SqlParserState
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SqlLineParser.SqlParserState>
- Enclosing class:
- SqlLineParser
public static enum SqlLineParser.SqlParserState extends java.lang.Enum<SqlLineParser.SqlParserState>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LINE_CONTINUES
MULTILINE_COMMENT
NEW_LINE
OK
QUOTED
ROUND_BRACKET_BALANCE_FAILED
SEMICOLON_REQUIRED
SQUARE_BRACKET_BALANCE_FAILED
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getMessage()
static SqlLineParser.SqlParserState
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SqlLineParser.SqlParserState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LINE_CONTINUES
public static final SqlLineParser.SqlParserState LINE_CONTINUES
-
MULTILINE_COMMENT
public static final SqlLineParser.SqlParserState MULTILINE_COMMENT
-
NEW_LINE
public static final SqlLineParser.SqlParserState NEW_LINE
-
OK
public static final SqlLineParser.SqlParserState OK
-
QUOTED
public static final SqlLineParser.SqlParserState QUOTED
-
ROUND_BRACKET_BALANCE_FAILED
public static final SqlLineParser.SqlParserState ROUND_BRACKET_BALANCE_FAILED
-
SEMICOLON_REQUIRED
public static final SqlLineParser.SqlParserState SEMICOLON_REQUIRED
-
SQUARE_BRACKET_BALANCE_FAILED
public static final SqlLineParser.SqlParserState SQUARE_BRACKET_BALANCE_FAILED
-
-
Method Detail
-
values
public static SqlLineParser.SqlParserState[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SqlLineParser.SqlParserState c : SqlLineParser.SqlParserState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SqlLineParser.SqlParserState 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
-
getMessage
public java.lang.String getMessage()
-
-