blob: bb94c4e2adf3a76e0ff2c52cd0796975c552394b [file] [log] [blame]
/**
* Copyright (c) 2016 CEA LIST.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* CEA LIST - Initial API and implementation
*
*/
package org.omg.smm;
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>Binary Functor</b></em>',
* and utility methods for working with them.
* <!-- end-user-doc -->
* @see org.omg.smm.SmmPackage#getBinaryFunctor()
* @model
* @generated
*/
public enum BinaryFunctor implements Enumerator {
/**
* The '<em><b>Plus</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #PLUS_VALUE
* @generated
* @ordered
*/
PLUS(0, "plus", "plus"),
/**
* The '<em><b>Minus</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #MINUS_VALUE
* @generated
* @ordered
*/
MINUS(1, "minus", "minus"),
/**
* The '<em><b>Multiply</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #MULTIPLY_VALUE
* @generated
* @ordered
*/
MULTIPLY(2, "multiply", "multiply"),
/**
* The '<em><b>Divide</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #DIVIDE_VALUE
* @generated
* @ordered
*/
DIVIDE(3, "divide", "divide"),
/**
* The '<em><b>Custom</b></em>' literal object.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #CUSTOM_VALUE
* @generated
* @ordered
*/
CUSTOM(4, "custom", "custom");
/**
* The '<em><b>Plus</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Plus</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #PLUS
* @model name="plus"
* @generated
* @ordered
*/
public static final int PLUS_VALUE = 0;
/**
* The '<em><b>Minus</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Minus</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #MINUS
* @model name="minus"
* @generated
* @ordered
*/
public static final int MINUS_VALUE = 1;
/**
* The '<em><b>Multiply</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Multiply</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #MULTIPLY
* @model name="multiply"
* @generated
* @ordered
*/
public static final int MULTIPLY_VALUE = 2;
/**
* The '<em><b>Divide</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Divide</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #DIVIDE
* @model name="divide"
* @generated
* @ordered
*/
public static final int DIVIDE_VALUE = 3;
/**
* The '<em><b>Custom</b></em>' literal value.
* <!-- begin-user-doc -->
* <p>
* If the meaning of '<em><b>Custom</b></em>' literal object isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @see #CUSTOM
* @model name="custom"
* @generated
* @ordered
*/
public static final int CUSTOM_VALUE = 4;
/**
* An array of all the '<em><b>Binary Functor</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
private static final BinaryFunctor[] VALUES_ARRAY =
new BinaryFunctor[] {
PLUS,
MINUS,
MULTIPLY,
DIVIDE,
CUSTOM,
};
/**
* A public read-only list of all the '<em><b>Binary Functor</b></em>' enumerators.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public static final List<BinaryFunctor> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY));
/**
* Returns the '<em><b>Binary Functor</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 BinaryFunctor get(String literal) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
BinaryFunctor result = VALUES_ARRAY[i];
if (result.toString().equals(literal)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Binary Functor</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 BinaryFunctor getByName(String name) {
for (int i = 0; i < VALUES_ARRAY.length; ++i) {
BinaryFunctor result = VALUES_ARRAY[i];
if (result.getName().equals(name)) {
return result;
}
}
return null;
}
/**
* Returns the '<em><b>Binary Functor</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 BinaryFunctor get(int value) {
switch (value) {
case PLUS_VALUE: return PLUS;
case MINUS_VALUE: return MINUS;
case MULTIPLY_VALUE: return MULTIPLY;
case DIVIDE_VALUE: return DIVIDE;
case CUSTOM_VALUE: return CUSTOM;
}
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 BinaryFunctor(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;
}
} //BinaryFunctor