/** * * * * $Id$ */ package net.opengis.fes20; import java.util.Arrays; import java.util.Collections; import java.util.List; import org.eclipse.emf.common.util.Enumerator; /** * * A representation of the literals of the enumeration 'Match Action Type', * and utility methods for working with them. * * @see net.opengis.fes20.Fes20Package#getMatchActionType() * @model extendedMetaData="name='MatchActionType'" * @generated */ public enum MatchActionType implements Enumerator { /** * The 'All' literal object. * * * @see #ALL_VALUE * @generated * @ordered */ ALL(0, "All", "All"), /** * The 'Any' literal object. * * * @see #ANY_VALUE * @generated * @ordered */ ANY(1, "Any", "Any"), /** * The 'One' literal object. * * * @see #ONE_VALUE * @generated * @ordered */ ONE(2, "One", "One"); /** * The 'All' literal value. * *

* If the meaning of 'All' literal object isn't clear, * there really should be more of a description here... *

* * @see #ALL * @model name="All" * @generated * @ordered */ public static final int ALL_VALUE = 0; /** * The 'Any' literal value. * *

* If the meaning of 'Any' literal object isn't clear, * there really should be more of a description here... *

* * @see #ANY * @model name="Any" * @generated * @ordered */ public static final int ANY_VALUE = 1; /** * The 'One' literal value. * *

* If the meaning of 'One' literal object isn't clear, * there really should be more of a description here... *

* * @see #ONE * @model name="One" * @generated * @ordered */ public static final int ONE_VALUE = 2; /** * An array of all the 'Match Action Type' enumerators. * * * @generated */ private static final MatchActionType[] VALUES_ARRAY = new MatchActionType[] { ALL, ANY, ONE, }; /** * A public read-only list of all the 'Match Action Type' enumerators. * * * @generated */ public static final List VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY)); /** * Returns the 'Match Action Type' literal with the specified literal value. * * * @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 'Match Action Type' literal with the specified name. * * * @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 'Match Action Type' literal with the specified integer value. * * * @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; } /** * * * @generated */ private final int value; /** * * * @generated */ private final String name; /** * * * @generated */ private final String literal; /** * Only this class can construct instances. * * * @generated */ private MatchActionType(int value, String name, String literal) { this.value = value; this.name = name; this.literal = literal; } /** * * * @generated */ public int getValue() { return value; } /** * * * @generated */ public String getName() { return name; } /** * * * @generated */ public String getLiteral() { return literal; } /** * Returns the literal value of the enumerator, which is its string representation. * * * @generated */ @Override public String toString() { return literal; } } //MatchActionType