/** * <copyright> * </copyright> * * $Id$ */ package net.opengis.fes20; 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>Match Action Type</b></em>', * and utility methods for working with them. * <!-- end-user-doc --> * @see net.opengis.fes20.Fes20Package#getMatchActionType() * @model extendedMetaData="name='MatchActionType'" * @generated */ public enum MatchActionType implements Enumerator { /** * The '<em><b>All</b></em>' literal object. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #ALL_VALUE * @generated * @ordered */ ALL(0, "All", "All"), /** * The '<em><b>Any</b></em>' literal object. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #ANY_VALUE * @generated * @ordered */ ANY(1, "Any", "Any"), /** * The '<em><b>One</b></em>' literal object. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #ONE_VALUE * @generated * @ordered */ ONE(2, "One", "One"); /** * The '<em><b>All</b></em>' literal value. * <!-- begin-user-doc --> * <p> * If the meaning of '<em><b>All</b></em>' literal object isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @see #ALL * @model name="All" * @generated * @ordered */ public static final int ALL_VALUE = 0; /** * The '<em><b>Any</b></em>' literal value. * <!-- begin-user-doc --> * <p> * If the meaning of '<em><b>Any</b></em>' literal object isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @see #ANY * @model name="Any" * @generated * @ordered */ public static final int ANY_VALUE = 1; /** * The '<em><b>One</b></em>' literal value. * <!-- begin-user-doc --> * <p> * If the meaning of '<em><b>One</b></em>' literal object isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @see #ONE * @model name="One" * @generated * @ordered */ public static final int ONE_VALUE = 2; /** * An array of all the '<em><b>Match Action Type</b></em>' enumerators. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ private static final MatchActionType[] VALUES_ARRAY = new MatchActionType[] { ALL, ANY, ONE, }; /** * A public read-only list of all the '<em><b>Match Action Type</b></em>' enumerators. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static final List<MatchActionType> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY)); /** * Returns the '<em><b>Match Action Type</b></em>' literal with the specified literal value. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static MatchActionType get(String literal) { for (int i = 0; i < VALUES_ARRAY.length; ++i) { MatchActionType result = VALUES_ARRAY[i]; if (result.toString().equals(literal)) { return result; } } return null; } /** * Returns the '<em><b>Match Action Type</b></em>' literal with the specified name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static MatchActionType getByName(String name) { for (int i = 0; i < VALUES_ARRAY.length; ++i) { MatchActionType result = VALUES_ARRAY[i]; if (result.getName().equals(name)) { return result; } } return null; } /** * Returns the '<em><b>Match Action Type</b></em>' literal with the specified integer value. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static MatchActionType get(int value) { switch (value) { case ALL_VALUE: return ALL; case ANY_VALUE: return ANY; case ONE_VALUE: return ONE; } 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 MatchActionType(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; } } //MatchActionType