Class IdentifierProcessing.Quoting

java.lang.Object
org.springframework.data.relational.core.sql.IdentifierProcessing.Quoting
Enclosing interface:
IdentifierProcessing

public static class IdentifierProcessing.Quoting extends Object
A conversion from unquoted identifiers to quoted identifiers.
Since:
2.0
Author:
Jens Schauder
  • Field Details

  • Constructor Details

    • Quoting

      public Quoting(String prefix, String suffix)
      Constructs a Quoting with potential different prefix and suffix used for quoting.
      Parameters:
      prefix - a String prefixed before the name for quoting it.
      suffix - a String suffixed at the end of the name for quoting it.
    • Quoting

      public Quoting(String quoteCharacter)
      Constructs a Quoting with the same String appended in front and end of an identifier.
      Parameters:
      quoteCharacter - the value appended at the beginning and the end of a name in order to quote it.
  • Method Details