public static interface SqlAbstractParserImpl.Metadata
"CREATE TABLE t (key INTEGER)"
.
Modifier and Type | Method and Description |
---|---|
String |
getJdbcKeywords()
Returns comma-separated list of JDBC keywords.
|
List<String> |
getTokens()
Returns a list of all tokens in alphabetical order.
|
boolean |
isContextVariableName(String token)
Returns whether token is the name of a context variable such as
"CURRENT_USER".
|
boolean |
isKeyword(String token)
Returns whether token is a keyword.
|
boolean |
isNonReservedKeyword(String token)
Returns true if token is a keyword but not a reserved word.
|
boolean |
isReservedFunctionName(String token)
Returns whether token is a reserved function name such as
"CURRENT_USER".
|
boolean |
isReservedWord(String token)
Returns whether token is a reserved word.
|
boolean |
isSql92ReservedWord(String token)
Returns whether token is a reserved word as specified by the SQL:92
standard.
|
boolean isNonReservedKeyword(String token)
boolean isContextVariableName(String token)
boolean isReservedFunctionName(String token)
boolean isKeyword(String token)
boolean isReservedWord(String token)
boolean isSql92ReservedWord(String token)
String getJdbcKeywords()
Copyright © 2012–2014 The Apache Software Foundation. All rights reserved.