StringClauses |
StringClauses.append(Enum name,
String clause) |
|
StringClauses |
StringClauses.append(Enum name,
StringClauses subclauses) |
|
StringClauses |
StringClauses.append(String clause) |
Adds a new clause at the end of the list.
|
StringClauses |
StringClauses.append(String key,
String clause) |
Adds a new clause at the end of the list with the given key.
|
StringClauses |
StringClauses.append(String key,
StringClauses subclauses) |
Adds a new sub-clause at the end of the list with the given key.
|
StringClauses |
StringClauses.append(StringClauses.LiteralClause literal) |
|
StringClauses |
StringClauses.getSubclause(Enum exitingKey) |
|
StringClauses |
StringClauses.getSubclause(String exitingKey) |
Retrieves the given key.
|
StringClauses |
StringClauses.insertAfter(Enum existingKey,
String newValue) |
|
StringClauses |
StringClauses.insertAfter(String existingKey,
String newValue) |
|
StringClauses |
StringClauses.insertAfter(String existingKey,
String newKey,
String newValue) |
Inserts a new clause after the given key.
|
StringClauses |
StringClauses.insertAfter(String existingKey,
String newKey,
StringClauses newValue) |
Inserts a new sub-clause after the given key.
|
StringClauses |
StringClauses.insertBefore(Enum existingKey,
Enum newKey,
String newValue) |
|
StringClauses |
StringClauses.insertBefore(Enum existingKey,
String newValue) |
|
StringClauses |
StringClauses.insertBefore(String existingKey,
String newValue) |
|
StringClauses |
StringClauses.insertBefore(String existingKey,
String newKey,
String newValue) |
Inserts a new clause before the given key.
|
StringClauses |
StringClauses.insertBefore(String existingKey,
String newKey,
StringClauses newValue) |
Inserts a new sub-clause before the given key.
|
static StringClauses |
SqlParser.parse(String sqlBlock) |
|
static StringClauses |
SqlParser.parse(String sqlBlock,
boolean preserveWhitespace,
boolean preserveComments) |
|
StringClauses |
StringClauses.prepend(Enum key,
String clause) |
|
StringClauses |
StringClauses.prepend(Enum key,
StringClauses clause) |
|
StringClauses |
StringClauses.prepend(String clause) |
|
StringClauses |
StringClauses.prepend(String key,
String clause) |
Adds a clause with the given key to the beginning of the list.
|
StringClauses |
StringClauses.prepend(String key,
StringClauses clause) |
Adds a sub-clause with the given key to the beginning of the list.
|
StringClauses |
StringClauses.prepend(StringClauses.LiteralClause literal) |
|
StringClauses |
StringClauses.remove(Enum key) |
|
StringClauses |
StringClauses.remove(String key) |
Removes the clause with the given key.
|
StringClauses |
StringClauses.replace(Enum key,
String newValue) |
|
StringClauses |
StringClauses.replace(Enum key,
StringClauses newValue) |
|
StringClauses |
StringClauses.replace(String key,
String newValue) |
Replaces the given key with a new string.
|
StringClauses |
StringClauses.replace(String key,
StringClauses newValue) |
Replaces the given key with a new sub-clause.
|