Uses of Class
liquibase.util.StringClauses
-
Uses of StringClauses in liquibase.parser
Modifier and TypeMethodDescriptiondefault StringClauses
LiquibaseSqlParser.parse
(String sqlBlock, boolean preserveWhitespace, boolean preserveComments, ChangeSet changeSet) -
Uses of StringClauses in liquibase.util
Modifier and TypeMethodDescriptionConvenience method forappend(String, String)
when using enums.StringClauses.append
(Enum name, StringClauses subclauses) Convenience method forappend(String, StringClauses)
when using enums.Adds a new clause at the end of the list.Adds a new clause at the end of the list with the given key.StringClauses.append
(String key, StringClauses subclauses) Adds a new sub-clause at the end of the list with the given key.StringClauses.append
(StringClauses.LiteralClause literal) StringClauses.getSubclause
(Enum exitingKey) Convenience method forgetSubclause(String)
when using enumsStringClauses.getSubclause
(String exitingKey) Retrieves the given key.StringClauses.insertAfter
(Enum existingKey, String newValue) Convenience method forinsertAfter(String, String)
when using enumsStringClauses.insertAfter
(String existingKey, String newValue) Convenience method forinsertAfter(String, String, String)
using the newValue as the newKey.StringClauses.insertAfter
(String existingKey, String newKey, String newValue) Inserts a new clause after the given key.StringClauses.insertAfter
(String existingKey, String newKey, StringClauses newValue) Inserts a new sub-clause after the given key.StringClauses.insertBefore
(Enum existingKey, Enum newKey, String newValue) Convenience method forinsertBefore(String, String)
when using enums.StringClauses.insertBefore
(Enum existingKey, String newValue) Convenience method forinsertBefore(String, String)
when using enums.StringClauses.insertBefore
(String existingKey, String newValue) Convenience method forinsertBefore(String, String, String)
where the new clause key is equal to the newValue.StringClauses.insertBefore
(String existingKey, String newKey, String newValue) Inserts a new clause before the given key.StringClauses.insertBefore
(String existingKey, String newKey, StringClauses newValue) Inserts a new sub-clause before the given key.static StringClauses
Deprecated.static StringClauses
Deprecated.load theLiquibaseSqlParser
using theSqlParserFactory
directly.StandardSqlParser.parse
(String sqlBlock, boolean preserveWhitespace, boolean preserveComments, ChangeSet changeSet) Convenience method forprepend(String, String)
when using enumsStringClauses.prepend
(Enum key, StringClauses clause) Convenience method forprepend(String, liquibase.util.StringClauses)
when using enumsConvenience method forprepend(String, String)
that uses the clause as the key.Adds a clause with the given key to the beginning of the list.StringClauses.prepend
(String key, StringClauses clause) Adds a sub-clause with the given key to the beginning of the list.StringClauses.prepend
(StringClauses.LiteralClause literal) Convenience method forremove(String)
when using enums.Removes the clause with the given key.Convenience method forreplace(String, String)
when using enums.StringClauses.replace
(Enum key, StringClauses newValue) Convenience method forreplace(String, liquibase.util.StringClauses)
when using enums.Replaces the given key with a new string.StringClauses.replace
(String key, StringClauses newValue) Replaces the given key with a new sub-clause.Modifier and TypeMethodDescriptionStringClauses.append
(Enum name, StringClauses subclauses) Convenience method forappend(String, StringClauses)
when using enums.StringClauses.append
(String key, StringClauses subclauses) Adds a new sub-clause at the end of the list with the given key.StringClauses.insertAfter
(String existingKey, String newKey, StringClauses newValue) Inserts a new sub-clause after the given key.StringClauses.insertBefore
(String existingKey, String newKey, StringClauses newValue) Inserts a new sub-clause before the given key.StringClauses.prepend
(Enum key, StringClauses clause) Convenience method forprepend(String, liquibase.util.StringClauses)
when using enumsStringClauses.prepend
(String key, StringClauses clause) Adds a sub-clause with the given key to the beginning of the list.StringClauses.replace
(Enum key, StringClauses newValue) Convenience method forreplace(String, liquibase.util.StringClauses)
when using enums.StringClauses.replace
(String key, StringClauses newValue) Replaces the given key with a new sub-clause.
LiquibaseSqlParser
using theSqlParserFactory
directly.