aboutsummaryrefslogtreecommitdiffstats
path: root/Application/hu.bme.mit.inf.dslreasoner.application/src-gen/hu/bme/mit/inf/dslreasoner/application/applicationConfiguration/ComparisonOperator.java
diff options
context:
space:
mode:
Diffstat (limited to 'Application/hu.bme.mit.inf.dslreasoner.application/src-gen/hu/bme/mit/inf/dslreasoner/application/applicationConfiguration/ComparisonOperator.java')
-rw-r--r--Application/hu.bme.mit.inf.dslreasoner.application/src-gen/hu/bme/mit/inf/dslreasoner/application/applicationConfiguration/ComparisonOperator.java62
1 files changed, 58 insertions, 4 deletions
diff --git a/Application/hu.bme.mit.inf.dslreasoner.application/src-gen/hu/bme/mit/inf/dslreasoner/application/applicationConfiguration/ComparisonOperator.java b/Application/hu.bme.mit.inf.dslreasoner.application/src-gen/hu/bme/mit/inf/dslreasoner/application/applicationConfiguration/ComparisonOperator.java
index dc5a8e9e..bee7c6e7 100644
--- a/Application/hu.bme.mit.inf.dslreasoner.application/src-gen/hu/bme/mit/inf/dslreasoner/application/applicationConfiguration/ComparisonOperator.java
+++ b/Application/hu.bme.mit.inf.dslreasoner.application/src-gen/hu/bme/mit/inf/dslreasoner/application/applicationConfiguration/ComparisonOperator.java
@@ -21,6 +21,26 @@ import org.eclipse.emf.common.util.Enumerator;
21public enum ComparisonOperator implements Enumerator 21public enum ComparisonOperator implements Enumerator
22{ 22{
23 /** 23 /**
24 * The '<em><b>LESS</b></em>' literal object.
25 * <!-- begin-user-doc -->
26 * <!-- end-user-doc -->
27 * @see #LESS_VALUE
28 * @generated
29 * @ordered
30 */
31 LESS(0, "LESS", "<"),
32
33 /**
34 * The '<em><b>GREATER</b></em>' literal object.
35 * <!-- begin-user-doc -->
36 * <!-- end-user-doc -->
37 * @see #GREATER_VALUE
38 * @generated
39 * @ordered
40 */
41 GREATER(1, "GREATER", ">"),
42
43 /**
24 * The '<em><b>LESS EQUALS</b></em>' literal object. 44 * The '<em><b>LESS EQUALS</b></em>' literal object.
25 * <!-- begin-user-doc --> 45 * <!-- begin-user-doc -->
26 * <!-- end-user-doc --> 46 * <!-- end-user-doc -->
@@ -28,7 +48,7 @@ public enum ComparisonOperator implements Enumerator
28 * @generated 48 * @generated
29 * @ordered 49 * @ordered
30 */ 50 */
31 LESS_EQUALS(0, "LESS_EQUALS", "<="), 51 LESS_EQUALS(2, "LESS_EQUALS", "<="),
32 52
33 /** 53 /**
34 * The '<em><b>GREATER EQUALS</b></em>' literal object. 54 * The '<em><b>GREATER EQUALS</b></em>' literal object.
@@ -38,7 +58,37 @@ public enum ComparisonOperator implements Enumerator
38 * @generated 58 * @generated
39 * @ordered 59 * @ordered
40 */ 60 */
41 GREATER_EQUALS(1, "GREATER_EQUALS", ">="); 61 GREATER_EQUALS(3, "GREATER_EQUALS", ">=");
62
63 /**
64 * The '<em><b>LESS</b></em>' literal value.
65 * <!-- begin-user-doc -->
66 * <p>
67 * If the meaning of '<em><b>LESS</b></em>' literal object isn't clear,
68 * there really should be more of a description here...
69 * </p>
70 * <!-- end-user-doc -->
71 * @see #LESS
72 * @model literal="&lt;"
73 * @generated
74 * @ordered
75 */
76 public static final int LESS_VALUE = 0;
77
78 /**
79 * The '<em><b>GREATER</b></em>' literal value.
80 * <!-- begin-user-doc -->
81 * <p>
82 * If the meaning of '<em><b>GREATER</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 #GREATER
87 * @model literal="&gt;"
88 * @generated
89 * @ordered
90 */
91 public static final int GREATER_VALUE = 1;
42 92
43 /** 93 /**
44 * The '<em><b>LESS EQUALS</b></em>' literal value. 94 * The '<em><b>LESS EQUALS</b></em>' literal value.
@@ -53,7 +103,7 @@ public enum ComparisonOperator implements Enumerator
53 * @generated 103 * @generated
54 * @ordered 104 * @ordered
55 */ 105 */
56 public static final int LESS_EQUALS_VALUE = 0; 106 public static final int LESS_EQUALS_VALUE = 2;
57 107
58 /** 108 /**
59 * The '<em><b>GREATER EQUALS</b></em>' literal value. 109 * The '<em><b>GREATER EQUALS</b></em>' literal value.
@@ -68,7 +118,7 @@ public enum ComparisonOperator implements Enumerator
68 * @generated 118 * @generated
69 * @ordered 119 * @ordered
70 */ 120 */
71 public static final int GREATER_EQUALS_VALUE = 1; 121 public static final int GREATER_EQUALS_VALUE = 3;
72 122
73 /** 123 /**
74 * An array of all the '<em><b>Comparison Operator</b></em>' enumerators. 124 * An array of all the '<em><b>Comparison Operator</b></em>' enumerators.
@@ -79,6 +129,8 @@ public enum ComparisonOperator implements Enumerator
79 private static final ComparisonOperator[] VALUES_ARRAY = 129 private static final ComparisonOperator[] VALUES_ARRAY =
80 new ComparisonOperator[] 130 new ComparisonOperator[]
81 { 131 {
132 LESS,
133 GREATER,
82 LESS_EQUALS, 134 LESS_EQUALS,
83 GREATER_EQUALS, 135 GREATER_EQUALS,
84 }; 136 };
@@ -145,6 +197,8 @@ public enum ComparisonOperator implements Enumerator
145 { 197 {
146 switch (value) 198 switch (value)
147 { 199 {
200 case LESS_VALUE: return LESS;
201 case GREATER_VALUE: return GREATER;
148 case LESS_EQUALS_VALUE: return LESS_EQUALS; 202 case LESS_EQUALS_VALUE: return LESS_EQUALS;
149 case GREATER_EQUALS_VALUE: return GREATER_EQUALS; 203 case GREATER_EQUALS_VALUE: return GREATER_EQUALS;
150 } 204 }