/com.hangum.tadpole.mongodb.model/src/com/hangum/tadpole/mongodb/model/RelationKind.java

https://repo.or.cz/Tadpole.git · Java · 272 lines · 71 code · 24 blank · 177 comment · 5 complexity · ed4f8518ba1a70a9f4b51df6c1dbf407 MD5 · raw file

  1. /*******************************************************************************
  2. * Copyright (c) 2013 hangum.
  3. * All rights reserved. This program and the accompanying materials
  4. * are made available under the terms of the GNU Public License v3.0
  5. * which accompanies this distribution, and is available at
  6. * http://www.gnu.org/licenses/gpl.html
  7. *
  8. * Contributors:
  9. * hangum - initial API and implementation
  10. ******************************************************************************/
  11. /**
  12. */
  13. package com.hangum.tadpole.mongodb.model;
  14. import java.util.Arrays;
  15. import java.util.Collections;
  16. import java.util.List;
  17. import org.eclipse.emf.common.util.Enumerator;
  18. /**
  19. * <!-- begin-user-doc -->
  20. * A representation of the literals of the enumeration '<em><b>Relation Kind</b></em>',
  21. * and utility methods for working with them.
  22. * <!-- end-user-doc -->
  23. * @see com.hangum.tadpole.mongodb.model.MongodbPackage#getRelationKind()
  24. * @model
  25. * @generated
  26. */
  27. public enum RelationKind implements Enumerator {
  28. /**
  29. * The '<em><b>ONLY ONE</b></em>' literal object.
  30. * <!-- begin-user-doc -->
  31. * <!-- end-user-doc -->
  32. * @see #ONLY_ONE_VALUE
  33. * @generated
  34. * @ordered
  35. */
  36. ONLY_ONE(1, "ONLY_ONE", "ONLY_ONE"),
  37. /**
  38. * The '<em><b>ZERO OR ONE</b></em>' literal object.
  39. * <!-- begin-user-doc -->
  40. * <!-- end-user-doc -->
  41. * @see #ZERO_OR_ONE_VALUE
  42. * @generated
  43. * @ordered
  44. */
  45. ZERO_OR_ONE(3, "ZERO_OR_ONE", "ZERO_ONE"),
  46. /**
  47. * The '<em><b>ZERO OR MANY</b></em>' literal object.
  48. * <!-- begin-user-doc -->
  49. * <!-- end-user-doc -->
  50. * @see #ZERO_OR_MANY_VALUE
  51. * @generated
  52. * @ordered
  53. */
  54. ZERO_OR_MANY(4, "ZERO_OR_MANY", "ZERO_MANY"),
  55. /**
  56. * The '<em><b>ONE OR MANY</b></em>' literal object.
  57. * <!-- begin-user-doc -->
  58. * <!-- end-user-doc -->
  59. * @see #ONE_OR_MANY_VALUE
  60. * @generated
  61. * @ordered
  62. */
  63. ONE_OR_MANY(5, "ONE_OR_MANY", "ONE_MANY");
  64. /**
  65. * The '<em><b>ONLY ONE</b></em>' literal value.
  66. * <!-- begin-user-doc -->
  67. * <p>
  68. * If the meaning of '<em><b>ONLY ONE</b></em>' literal object isn't clear,
  69. * there really should be more of a description here...
  70. * </p>
  71. * <!-- end-user-doc -->
  72. * @see #ONLY_ONE
  73. * @model
  74. * @generated
  75. * @ordered
  76. */
  77. public static final int ONLY_ONE_VALUE = 1;
  78. /**
  79. * The '<em><b>ZERO OR ONE</b></em>' literal value.
  80. * <!-- begin-user-doc -->
  81. * <p>
  82. * If the meaning of '<em><b>ZERO OR ONE</b></em>' literal object isn't clear,
  83. * there really should be more of a description here...
  84. * </p>
  85. * <!-- end-user-doc -->
  86. * @see #ZERO_OR_ONE
  87. * @model literal="ZERO_ONE"
  88. * @generated
  89. * @ordered
  90. */
  91. public static final int ZERO_OR_ONE_VALUE = 3;
  92. /**
  93. * The '<em><b>ZERO OR MANY</b></em>' literal value.
  94. * <!-- begin-user-doc -->
  95. * <p>
  96. * If the meaning of '<em><b>ZERO OR MANY</b></em>' literal object isn't clear,
  97. * there really should be more of a description here...
  98. * </p>
  99. * <!-- end-user-doc -->
  100. * @see #ZERO_OR_MANY
  101. * @model literal="ZERO_MANY"
  102. * @generated
  103. * @ordered
  104. */
  105. public static final int ZERO_OR_MANY_VALUE = 4;
  106. /**
  107. * The '<em><b>ONE OR MANY</b></em>' literal value.
  108. * <!-- begin-user-doc -->
  109. * <p>
  110. * If the meaning of '<em><b>ONE OR MANY</b></em>' literal object isn't clear,
  111. * there really should be more of a description here...
  112. * </p>
  113. * <!-- end-user-doc -->
  114. * @see #ONE_OR_MANY
  115. * @model literal="ONE_MANY"
  116. * @generated
  117. * @ordered
  118. */
  119. public static final int ONE_OR_MANY_VALUE = 5;
  120. /**
  121. * An array of all the '<em><b>Relation Kind</b></em>' enumerators.
  122. * <!-- begin-user-doc -->
  123. * <!-- end-user-doc -->
  124. * @generated
  125. */
  126. private static final RelationKind[] VALUES_ARRAY =
  127. new RelationKind[] {
  128. ONLY_ONE,
  129. ZERO_OR_ONE,
  130. ZERO_OR_MANY,
  131. ONE_OR_MANY,
  132. };
  133. /**
  134. * A public read-only list of all the '<em><b>Relation Kind</b></em>' enumerators.
  135. * <!-- begin-user-doc -->
  136. * <!-- end-user-doc -->
  137. * @generated
  138. */
  139. public static final List<RelationKind> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY));
  140. /**
  141. * Returns the '<em><b>Relation Kind</b></em>' literal with the specified literal value.
  142. * <!-- begin-user-doc -->
  143. * <!-- end-user-doc -->
  144. * @generated
  145. */
  146. public static RelationKind get(String literal) {
  147. for (int i = 0; i < VALUES_ARRAY.length; ++i) {
  148. RelationKind result = VALUES_ARRAY[i];
  149. if (result.toString().equals(literal)) {
  150. return result;
  151. }
  152. }
  153. return null;
  154. }
  155. /**
  156. * Returns the '<em><b>Relation Kind</b></em>' literal with the specified name.
  157. * <!-- begin-user-doc -->
  158. * <!-- end-user-doc -->
  159. * @generated
  160. */
  161. public static RelationKind getByName(String name) {
  162. for (int i = 0; i < VALUES_ARRAY.length; ++i) {
  163. RelationKind result = VALUES_ARRAY[i];
  164. if (result.getName().equals(name)) {
  165. return result;
  166. }
  167. }
  168. return null;
  169. }
  170. /**
  171. * Returns the '<em><b>Relation Kind</b></em>' literal with the specified integer value.
  172. * <!-- begin-user-doc -->
  173. * <!-- end-user-doc -->
  174. * @generated
  175. */
  176. public static RelationKind get(int value) {
  177. switch (value) {
  178. case ONLY_ONE_VALUE: return ONLY_ONE;
  179. case ZERO_OR_ONE_VALUE: return ZERO_OR_ONE;
  180. case ZERO_OR_MANY_VALUE: return ZERO_OR_MANY;
  181. case ONE_OR_MANY_VALUE: return ONE_OR_MANY;
  182. }
  183. return null;
  184. }
  185. /**
  186. * <!-- begin-user-doc -->
  187. * <!-- end-user-doc -->
  188. * @generated
  189. */
  190. private final int value;
  191. /**
  192. * <!-- begin-user-doc -->
  193. * <!-- end-user-doc -->
  194. * @generated
  195. */
  196. private final String name;
  197. /**
  198. * <!-- begin-user-doc -->
  199. * <!-- end-user-doc -->
  200. * @generated
  201. */
  202. private final String literal;
  203. /**
  204. * Only this class can construct instances.
  205. * <!-- begin-user-doc -->
  206. * <!-- end-user-doc -->
  207. * @generated
  208. */
  209. private RelationKind(int value, String name, String literal) {
  210. this.value = value;
  211. this.name = name;
  212. this.literal = literal;
  213. }
  214. /**
  215. * <!-- begin-user-doc -->
  216. * <!-- end-user-doc -->
  217. * @generated
  218. */
  219. public int getValue() {
  220. return value;
  221. }
  222. /**
  223. * <!-- begin-user-doc -->
  224. * <!-- end-user-doc -->
  225. * @generated
  226. */
  227. public String getName() {
  228. return name;
  229. }
  230. /**
  231. * <!-- begin-user-doc -->
  232. * <!-- end-user-doc -->
  233. * @generated
  234. */
  235. public String getLiteral() {
  236. return literal;
  237. }
  238. /**
  239. * Returns the literal value of the enumerator, which is its string representation.
  240. * <!-- begin-user-doc -->
  241. * <!-- end-user-doc -->
  242. * @generated
  243. */
  244. @Override
  245. public String toString() {
  246. return literal;
  247. }
  248. } //RelationKind