public interface SqlAliasExpander
Usages can be returned, each with a List<String> and int offsets. SQL reserved words are not guarenteed to be filtered.| Modifier and Type | Interface and Description | 
|---|---|
static interface  | 
SqlAliasExpander.Usage  | 
| Modifier and Type | Method and Description | 
|---|---|
java.util.Collection<SqlAliasExpander.Usage> | 
getUsages(PlSqlToken startToken, PlSqlToken endToken)
Get  
Usages for the SQL found between the two given PlSqlTokens. | 
java.util.Collection<SqlAliasExpander.Usage> | 
getUsages(java.lang.String sql)
Get  
Usages for the given SQL. | 
java.util.Collection<SqlAliasExpander.Usage> getUsages(java.lang.String sql)
Usages for the given SQL. Offsets will be zero-based from the start of the String.sql -java.util.Collection<SqlAliasExpander.Usage> getUsages(PlSqlToken startToken, PlSqlToken endToken)
Usages for the SQL found between the two given PlSqlTokens. Offsets will be zero-based from the start of the string that was tokenized to provide the tokens.startToken - Token at the start of the sqlendToken - Token at the start of the sql