/jOOQ/src/main/java/org/jooq/util/xml/jaxb/Table.java

http://github.com/jOOQ/jOOQ · Java · 218 lines · 169 code · 26 blank · 23 comment · 35 complexity · fe62e9d8696aacfb17397ea0b1fa931e MD5 · raw file

  1. package org.jooq.util.xml.jaxb;
  2. import java.io.Serializable;
  3. import javax.xml.bind.annotation.XmlAccessType;
  4. import javax.xml.bind.annotation.XmlAccessorType;
  5. import javax.xml.bind.annotation.XmlElement;
  6. import javax.xml.bind.annotation.XmlSchemaType;
  7. import javax.xml.bind.annotation.XmlType;
  8. import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
  9. import org.jooq.util.jaxb.tools.StringAdapter;
  10. import org.jooq.util.jaxb.tools.XMLAppendable;
  11. import org.jooq.util.jaxb.tools.XMLBuilder;
  12. /**
  13. * <p>Java class for Table complex type.
  14. *
  15. * <p>The following schema fragment specifies the expected content contained within this class.
  16. *
  17. * <pre>
  18. * &lt;complexType name="Table"&gt;
  19. * &lt;complexContent&gt;
  20. * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType"&gt;
  21. * &lt;all&gt;
  22. * &lt;element name="table_catalog" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
  23. * &lt;element name="table_schema" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
  24. * &lt;element name="table_name" type="{http://www.w3.org/2001/XMLSchema}string"/&gt;
  25. * &lt;element name="table_type" type="{http://www.jooq.org/xsd/jooq-meta-3.16.0.xsd}TableType" minOccurs="0"/&gt;
  26. * &lt;element name="comment" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/&gt;
  27. * &lt;/all&gt;
  28. * &lt;/restriction&gt;
  29. * &lt;/complexContent&gt;
  30. * &lt;/complexType&gt;
  31. * </pre>
  32. *
  33. *
  34. */
  35. @XmlAccessorType(XmlAccessType.FIELD)
  36. @XmlType(name = "Table", propOrder = {
  37. })
  38. @SuppressWarnings({
  39. "all"
  40. })
  41. public class Table implements Serializable, XMLAppendable
  42. {
  43. private final static long serialVersionUID = 31600L;
  44. @XmlElement(name = "table_catalog")
  45. @XmlJavaTypeAdapter(StringAdapter.class)
  46. protected String tableCatalog;
  47. @XmlElement(name = "table_schema")
  48. @XmlJavaTypeAdapter(StringAdapter.class)
  49. protected String tableSchema;
  50. @XmlElement(name = "table_name", required = true)
  51. @XmlJavaTypeAdapter(StringAdapter.class)
  52. protected String tableName;
  53. @XmlElement(name = "table_type", defaultValue = "BASE TABLE")
  54. @XmlSchemaType(name = "string")
  55. protected TableType tableType = TableType.BASE_TABLE;
  56. @XmlJavaTypeAdapter(StringAdapter.class)
  57. protected String comment;
  58. public String getTableCatalog() {
  59. return tableCatalog;
  60. }
  61. public void setTableCatalog(String value) {
  62. this.tableCatalog = value;
  63. }
  64. public String getTableSchema() {
  65. return tableSchema;
  66. }
  67. public void setTableSchema(String value) {
  68. this.tableSchema = value;
  69. }
  70. public String getTableName() {
  71. return tableName;
  72. }
  73. public void setTableName(String value) {
  74. this.tableName = value;
  75. }
  76. public TableType getTableType() {
  77. return tableType;
  78. }
  79. public void setTableType(TableType value) {
  80. this.tableType = value;
  81. }
  82. public String getComment() {
  83. return comment;
  84. }
  85. public void setComment(String value) {
  86. this.comment = value;
  87. }
  88. public Table withTableCatalog(String value) {
  89. setTableCatalog(value);
  90. return this;
  91. }
  92. public Table withTableSchema(String value) {
  93. setTableSchema(value);
  94. return this;
  95. }
  96. public Table withTableName(String value) {
  97. setTableName(value);
  98. return this;
  99. }
  100. public Table withTableType(TableType value) {
  101. setTableType(value);
  102. return this;
  103. }
  104. public Table withComment(String value) {
  105. setComment(value);
  106. return this;
  107. }
  108. @Override
  109. public final void appendTo(XMLBuilder builder) {
  110. builder.append("table_catalog", tableCatalog);
  111. builder.append("table_schema", tableSchema);
  112. builder.append("table_name", tableName);
  113. builder.append("table_type", tableType);
  114. builder.append("comment", comment);
  115. }
  116. @Override
  117. public String toString() {
  118. XMLBuilder builder = XMLBuilder.nonFormatting();
  119. appendTo(builder);
  120. return builder.toString();
  121. }
  122. @Override
  123. public boolean equals(Object that) {
  124. if (this == that) {
  125. return true;
  126. }
  127. if (that == null) {
  128. return false;
  129. }
  130. if (getClass()!= that.getClass()) {
  131. return false;
  132. }
  133. Table other = ((Table) that);
  134. if (tableCatalog == null) {
  135. if (other.tableCatalog!= null) {
  136. return false;
  137. }
  138. } else {
  139. if (!tableCatalog.equals(other.tableCatalog)) {
  140. return false;
  141. }
  142. }
  143. if (tableSchema == null) {
  144. if (other.tableSchema!= null) {
  145. return false;
  146. }
  147. } else {
  148. if (!tableSchema.equals(other.tableSchema)) {
  149. return false;
  150. }
  151. }
  152. if (tableName == null) {
  153. if (other.tableName!= null) {
  154. return false;
  155. }
  156. } else {
  157. if (!tableName.equals(other.tableName)) {
  158. return false;
  159. }
  160. }
  161. if (tableType == null) {
  162. if (other.tableType!= null) {
  163. return false;
  164. }
  165. } else {
  166. if (!tableType.equals(other.tableType)) {
  167. return false;
  168. }
  169. }
  170. if (comment == null) {
  171. if (other.comment!= null) {
  172. return false;
  173. }
  174. } else {
  175. if (!comment.equals(other.comment)) {
  176. return false;
  177. }
  178. }
  179. return true;
  180. }
  181. @Override
  182. public int hashCode() {
  183. final int prime = 31;
  184. int result = 1;
  185. result = ((prime*result)+((tableCatalog == null)? 0 :tableCatalog.hashCode()));
  186. result = ((prime*result)+((tableSchema == null)? 0 :tableSchema.hashCode()));
  187. result = ((prime*result)+((tableName == null)? 0 :tableName.hashCode()));
  188. result = ((prime*result)+((tableType == null)? 0 :tableType.hashCode()));
  189. result = ((prime*result)+((comment == null)? 0 :comment.hashCode()));
  190. return result;
  191. }
  192. }