/jOOQ/src/main/java/org/jooq/AlterTableRenameConstraintToStep.java

http://github.com/jOOQ/jOOQ · Java · 109 lines · 18 code · 6 blank · 85 comment · 0 complexity · 8f48825d684d28311923437490f7ade3 MD5 · raw file

  1. /*
  2. * Licensed under the Apache License, Version 2.0 (the "License");
  3. * you may not use this file except in compliance with the License.
  4. * You may obtain a copy of the License at
  5. *
  6. * http://www.apache.org/licenses/LICENSE-2.0
  7. *
  8. * Unless required by applicable law or agreed to in writing, software
  9. * distributed under the License is distributed on an "AS IS" BASIS,
  10. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  11. * See the License for the specific language governing permissions and
  12. * limitations under the License.
  13. *
  14. * Other licenses:
  15. * -----------------------------------------------------------------------------
  16. * Commercial licenses for this work are available. These replace the above
  17. * ASL 2.0 and offer limited warranties, support, maintenance, and commercial
  18. * database integrations.
  19. *
  20. * For more information, please visit: http://www.jooq.org/licenses
  21. *
  22. *
  23. *
  24. *
  25. *
  26. *
  27. *
  28. *
  29. *
  30. *
  31. *
  32. *
  33. *
  34. *
  35. *
  36. *
  37. */
  38. package org.jooq;
  39. // ...
  40. // ...
  41. // ...
  42. // ...
  43. // ...
  44. import static org.jooq.SQLDialect.CUBRID;
  45. // ...
  46. import static org.jooq.SQLDialect.H2;
  47. import static org.jooq.SQLDialect.HSQLDB;
  48. // ...
  49. // ...
  50. // ...
  51. import static org.jooq.SQLDialect.POSTGRES;
  52. // ...
  53. // ...
  54. // ...
  55. // ...
  56. // ...
  57. // ...
  58. import static org.jooq.SQLDialect.YUGABYTE;
  59. import org.jetbrains.annotations.NotNull;
  60. /**
  61. * The step in the <code>ALTER TABLE</code> DSL used to <code>RENAME</code>
  62. * constraints.
  63. * <p>
  64. * <h3>Referencing <code>XYZ*Step</code> types directly from client code</h3>
  65. * <p>
  66. * It is usually not recommended to reference any <code>XYZ*Step</code> types
  67. * directly from client code, or assign them to local variables. When writing
  68. * dynamic SQL, creating a statement's components dynamically, and passing them
  69. * to the DSL API statically is usually a better choice. See the manual's
  70. * section about dynamic SQL for details: <a href=
  71. * "https://www.jooq.org/doc/latest/manual/sql-building/dynamic-sql">https://www.jooq.org/doc/latest/manual/sql-building/dynamic-sql</a>.
  72. * <p>
  73. * Drawbacks of referencing the <code>XYZ*Step</code> types directly:
  74. * <ul>
  75. * <li>They're operating on mutable implementations (as of jOOQ 3.x)</li>
  76. * <li>They're less composable and not easy to get right when dynamic SQL gets
  77. * complex</li>
  78. * <li>They're less readable</li>
  79. * <li>They might have binary incompatible changes between minor releases</li>
  80. * </ul>
  81. *
  82. * @author Lukas Eder
  83. */
  84. public interface AlterTableRenameConstraintToStep {
  85. /**
  86. * Specify a new constraint name.
  87. */
  88. @NotNull @CheckReturnValue
  89. @Support({ CUBRID, H2, HSQLDB, POSTGRES, YUGABYTE })
  90. AlterTableFinalStep to(Constraint newName);
  91. /**
  92. * Specify a new constraint name.
  93. */
  94. @NotNull @CheckReturnValue
  95. @Support({ CUBRID, H2, HSQLDB, POSTGRES, YUGABYTE })
  96. AlterTableFinalStep to(Name newName);
  97. /**
  98. * Specify a new constraint name.
  99. */
  100. @NotNull @CheckReturnValue
  101. @Support({ CUBRID, H2, HSQLDB, POSTGRES, YUGABYTE })
  102. AlterTableFinalStep to(String newName);
  103. }