blob: 75f5ef7f509c7f788e5541c48420f53a7a0df0e9 [file] [log] [blame]
/**
* Copyright (c) 2014, Loetz GmbH&Co.KG (Heidelberg)
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Based on ideas from Xtext, Xtend, Xcore
*
* Contributors:
* Joerg Riegel - Initial implementation
*
*/
package org.eclipse.osbp.xtext.datainterchange;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import org.eclipse.emf.common.util.Enumerator;
/**
* <!-- begin-user-doc -->
* A representation of the literals of the enumeration '<em><b>Operator</b></em>',
* and utility methods for working with them.
* <!-- end-user-doc -->
* @see org.eclipse.osbp.xtext.datainterchange.DataDSLPackage#getOperator()
* @model
* @generated
*/
public enum Operator implements Enumerator {
/**
* The '<em><b>Equals</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #EQUALS_VALUE
* @generated
* @ordered
*/
EQUALS(0, "equals", "equals"),
/**
* The '<em><b>Notequals</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #NOTEQUALS_VALUE
* @generated
* @ordered
*/
NOTEQUALS(0, "notequals", "notEquals"),
/**
* The '<em><b>Greaterthan</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #GREATERTHAN_VALUE
* @generated
* @ordered
*/
GREATERTHAN(0, "greaterthan", "greaterThan"),
/**
* The '<em><b>Greaterthanorequalto</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #GREATERTHANOREQUALTO_VALUE
* @generated
* @ordered
*/
GREATERTHANOREQUALTO(0, "greaterthanorequalto", "greatThanOrEqualTo"),
/**
* The '<em><b>Lessthan</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #LESSTHAN_VALUE
* @generated
* @ordered
*/
LESSTHAN(0, "lessthan", "lessThen"),
/**
* The '<em><b>Lessthanorequalto</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #LESSTHANOREQUALTO_VALUE
* @generated
* @ordered
*/
LESSTHANOREQUALTO(0, "lessthanorequalto", "lessThanOrEqualTo"),
/**
* The '<em><b>Isnull</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #ISNULL_VALUE
* @generated
* @ordered
*/
ISNULL(0, "isnull", "isNull"),
/**
* The '<em><b>Isnotnull</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #ISNOTNULL_VALUE
* @generated
* @ordered
*/
ISNOTNULL(0, "isnotnull", "isNotNull");
/**
* The '<em><b>Equals</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Equals</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #EQUALS
* @model name="equals"
* @generated
* @ordered
*/
public static final int EQUALS_VALUE = 0;
/**
* The '<em><b>Notequals</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Notequals</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #NOTEQUALS
* @model name="notequals" literal="notEquals"
* @generated
* @ordered
*/
public static final int NOTEQUALS_VALUE = 0;
/**
* The '<em><b>Greaterthan</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Greaterthan</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #GREATERTHAN
* @model name="greaterthan" literal="greaterThan"
* @generated
* @ordered
*/
public static final int GREATERTHAN_VALUE = 0;
/**
* The '<em><b>Greaterthanorequalto</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Greaterthanorequalto</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #GREATERTHANOREQUALTO
* @model name="greaterthanorequalto" literal="greatThanOrEqualTo"
* @generated
* @ordered
*/
public static final int GREATERTHANOREQUALTO_VALUE = 0;
/**
* The '<em><b>Lessthan</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Lessthan</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #LESSTHAN
* @model name="lessthan" literal="lessThen"
* @generated
* @ordered
*/
public static final int LESSTHAN_VALUE = 0;
/**
* The '<em><b>Lessthanorequalto</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Lessthanorequalto</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #LESSTHANOREQUALTO
* @model name="lessthanorequalto" literal="lessThanOrEqualTo"
* @generated
* @ordered
*/
public static final int LESSTHANOREQUALTO_VALUE = 0;
/**
* The '<em><b>Isnull</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Isnull</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #ISNULL
* @model name="isnull" literal="isNull"
* @generated
* @ordered
*/
public static final int ISNULL_VALUE = 0;
/**
* The '<em><b>Isnotnull</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Isnotnull</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #ISNOTNULL
* @model name="isnotnull" literal="isNotNull"
* @generated
* @ordered
*/
public static final int ISNOTNULL_VALUE = 0;
/**
* An array of all the '<em><b>Operator</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private static final Operator[] VALUES_ARRAY =
new Operator[] {
EQUALS,
NOTEQUALS,
GREATERTHAN,
GREATERTHANOREQUALTO,
LESSTHAN,
LESSTHANOREQUALTO,
ISNULL,
ISNOTNULL,
};
/**
* A public read-only list of all the '<em><b>Operator</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static final List<Operator> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY));
/**
* Returns the '<em><b>Operator</b></em>' literal with the specified literal value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param literal the literal.
* @return the matching enumerator or <code>null</code>.
* @generated
*/
public static Operator get(String literal) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
Operator result = VALUES_ARRAY[i];
if (result.toString().equals(literal)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Operator</b></em>' literal with the specified name.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param name the name.
* @return the matching enumerator or <code>null</code>.
* @generated
*/
public static Operator getByName(String name) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
Operator result = VALUES_ARRAY[i];
if (result.getName().equals(name)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Operator</b></em>' literal with the specified integer value.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the integer value.
* @return the matching enumerator or <code>null</code>.
* @generated
*/
public static Operator get(int value) {
switch (value) {
case EQUALS_VALUE: return EQUALS;
}
return null;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private final int value;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private final String name;
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private final String literal;
/**
* Only this class can construct instances.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private Operator(int value, String name, String literal) {
this.value = value;
this.name = name;
this.literal = literal;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public int getValue() {
return value;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public String getName() {
return name;
}
/**
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public String getLiteral() {
return literal;
}
/**
* Returns the literal value of the enumerator, which is its string representation.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@Override
public String toString() {
return literal;
}
} //Operator