Package | Description |
---|---|
liquibase.util |
Modifier and Type | Method and Description |
---|---|
StringClauses |
StringClauses.append(Enum name,
String clause)
Convenience method for
append(String, String) when using enums. |
StringClauses |
StringClauses.append(Enum name,
StringClauses subclauses)
Convenience method for
append(String, StringClauses) when using enums. |
StringClauses |
StringClauses.append(String clause)
Adds a new clause at the end of the list.
|
StringClauses |
StringClauses.append(StringClauses.LiteralClause literal) |
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.getSubclause(Enum exitingKey)
Convenience method for
getSubclause(String) when using enums |
StringClauses |
StringClauses.getSubclause(String exitingKey)
Retrieves the given key.
|
StringClauses |
StringClauses.insertAfter(Enum existingKey,
String newValue)
Convenience method for
insertAfter(String, String) when using enums |
StringClauses |
StringClauses.insertAfter(String existingKey,
String newValue)
Convenience method for
insertAfter(String, String, String) using the newValue as the newKey. |
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)
Convenience method for
insertBefore(String, String) when using enums. |
StringClauses |
StringClauses.insertBefore(Enum existingKey,
String newValue)
Convenience method for
insertBefore(String, String) when using enums. |
StringClauses |
StringClauses.insertBefore(String existingKey,
String newValue)
Convenience method for
insertBefore(String, String, String) where the new clause key is equal to the 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)
Convenience method for
prepend(String, String) when using enums |
StringClauses |
StringClauses.prepend(Enum key,
StringClauses clause)
Convenience method for
prepend(String, liquibase.util.StringClauses) when using enums |
StringClauses |
StringClauses.prepend(String clause)
Convenience method for
prepend(String, String) that uses the clause as the key. |
StringClauses |
StringClauses.prepend(StringClauses.LiteralClause literal) |
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.remove(Enum key)
Convenience method for
remove(String) when using enums. |
StringClauses |
StringClauses.remove(String key)
Removes the clause with the given key.
|
StringClauses |
StringClauses.replace(Enum key,
String newValue)
Convenience method for
replace(String, String) when using enums. |
StringClauses |
StringClauses.replace(Enum key,
StringClauses newValue)
Convenience method for
replace(String, liquibase.util.StringClauses) when using enums. |
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.
|
StringClauses |
StringClauses.replaceIfExists(String key,
String newValue)
Replaces the given key with a new string.
|
Modifier and Type | Method and Description |
---|---|
StringClauses |
StringClauses.append(Enum name,
StringClauses subclauses)
Convenience method for
append(String, StringClauses) when using enums. |
StringClauses |
StringClauses.append(String key,
StringClauses subclauses)
Adds a new sub-clause at the end of the list with the given key.
|
StringClauses |
StringClauses.insertAfter(String existingKey,
String newKey,
StringClauses newValue)
Inserts a new sub-clause after the given key.
|
StringClauses |
StringClauses.insertBefore(String existingKey,
String newKey,
StringClauses newValue)
Inserts a new sub-clause before the given key.
|
StringClauses |
StringClauses.prepend(Enum key,
StringClauses clause)
Convenience method for
prepend(String, liquibase.util.StringClauses) when using enums |
StringClauses |
StringClauses.prepend(String key,
StringClauses clause)
Adds a sub-clause with the given key to the beginning of the list.
|
StringClauses |
StringClauses.replace(Enum key,
StringClauses newValue)
Convenience method for
replace(String, liquibase.util.StringClauses) when using enums. |
StringClauses |
StringClauses.replace(String key,
StringClauses newValue)
Replaces the given key with a new sub-clause.
|
Copyright © 2019 Liquibase.org. All rights reserved.