| Package | Description | 
|---|---|
| oracle.javatools.db.plsql | 
 Utility classes for working with (for example parsing) PL/SQL. 
 | 
| oracle.javatools.db.token | 
| Modifier and Type | Method and Description | 
|---|---|
TokenPattern.PatternResult | 
PlSqlTokenPattern.getResult(java.lang.String source,
         boolean startsWith)  | 
| Modifier and Type | Method and Description | 
|---|---|
TokenPattern.PatternResult | 
TokenPattern.getResult(java.lang.String source)
Tokenizes the given source and attempts a pattern match from the first
 token. 
 | 
TokenPattern.PatternResult | 
TokenPattern.getResult(java.lang.String source,
         boolean startsWith)
Tokenizes the given source and attempts a pattern match from the first
 token, optionally scanning until a match is found if startsWith == false. 
 | 
TokenPattern.PatternResult | 
TokenPattern.getResult(T startTk)
Attempts a pattern match from the given token. 
 | 
TokenPattern.PatternResult | 
TokenPattern.getResult(T startTk,
         boolean startsWith)
Attempts a pattern match from the given token, optionally scanning until a
 match is found if startsWith == false. 
 | 
TokenPattern.PatternResult | 
TokenPattern.getResult(T startTk,
         T endTk)
Attempts a pattern match from the given start token, upto the given end token. 
 | 
TokenPattern.PatternResult | 
TokenPattern.getResult(T startTk,
         T endTk,
         boolean startsWith)
Attempts a pattern match from the given token, upto the given end token,
 optionally scanning until a match is found if startsWith == false. 
 |