/** * <copyright> * </copyright> * * $Id$ */ package org.eclipse.bpel.fnmeta.model; 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>Optionality</b></em>', * and utility methods for working with them. * <!-- end-user-doc --> * @see org.eclipse.bpel.fnmeta.model.FMPackage#getOptionality() * @model * @generated */ public enum Optionality implements Enumerator { /** * The '<em><b>Required</b></em>' literal object. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #REQUIRED_VALUE * @generated * @ordered */ REQUIRED(0, "Required", "!"), /** * The '<em><b>Optional</b></em>' literal object. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #OPTIONAL_VALUE * @generated * @ordered */ OPTIONAL(1, "Optional", "?"), /** * The '<em><b>Optional Many</b></em>' literal object. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #OPTIONAL_MANY_VALUE * @generated * @ordered */ OPTIONAL_MANY(2, "OptionalMany", "*"); /** * The '<em><b>Required</b></em>' literal value. * <!-- begin-user-doc --> * <p> * If the meaning of '<em><b>Required</b></em>' literal object isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @see #REQUIRED * @model name="Required" literal="!" * @generated * @ordered */ public static final int REQUIRED_VALUE = 0; /** * The '<em><b>Optional</b></em>' literal value. * <!-- begin-user-doc --> * <p> * If the meaning of '<em><b>Optional</b></em>' literal object isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @see #OPTIONAL * @model name="Optional" literal="?" * @generated * @ordered */ public static final int OPTIONAL_VALUE = 1; /** * The '<em><b>Optional Many</b></em>' literal value. * <!-- begin-user-doc --> * <p> * If the meaning of '<em><b>Optional Many</b></em>' literal object isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @see #OPTIONAL_MANY * @model name="OptionalMany" literal="*" * @generated * @ordered */ public static final int OPTIONAL_MANY_VALUE = 2; /** * An array of all the '<em><b>Optionality</b></em>' enumerators. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ private static final Optionality[] VALUES_ARRAY = new Optionality[] { REQUIRED, OPTIONAL, OPTIONAL_MANY, }; /** * A public read-only list of all the '<em><b>Optionality</b></em>' enumerators. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static final List<Optionality> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY)); /** * Returns the '<em><b>Optionality</b></em>' literal with the specified literal value. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static Optionality get(String literal) { for (int i = 0; i < VALUES_ARRAY.length; ++i) { Optionality result = VALUES_ARRAY[i]; if (result.toString().equals(literal)) { return result; } } return null; } /** * Returns the '<em><b>Optionality</b></em>' literal with the specified name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static Optionality getByName(String name) { for (int i = 0; i < VALUES_ARRAY.length; ++i) { Optionality result = VALUES_ARRAY[i]; if (result.getName().equals(name)) { return result; } } return null; } /** * Returns the '<em><b>Optionality</b></em>' literal with the specified integer value. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static Optionality get(int value) { switch (value) { case REQUIRED_VALUE: return REQUIRED; case OPTIONAL_VALUE: return OPTIONAL; case OPTIONAL_MANY_VALUE: return OPTIONAL_MANY; } 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 Optionality(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; } } //Optionality