/** */ package net.gexf_1_2.gexf; 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>Attrtype Type</b></em>', and * utility methods for working with them. <!-- end-user-doc --> * * @see net.gexf_1_2.gexf.GexfPackage#getAttrtypeType() * @model extendedMetaData="name='attrtype-type'" * @generated */ public enum AttrtypeType implements Enumerator { /** * The '<em><b>Integer</b></em>' literal object. <!-- begin-user-doc --> <!-- end-user-doc --> * * @see #INTEGER_VALUE * @generated * @ordered */ INTEGER(0, "integer", "integer"), /** * The '<em><b>Long</b></em>' literal object. <!-- begin-user-doc --> <!-- end-user-doc --> * * @see #LONG_VALUE * @generated * @ordered */ LONG(1, "long", "long"), /** * The '<em><b>Double</b></em>' literal object. <!-- begin-user-doc --> <!-- end-user-doc --> * * @see #DOUBLE_VALUE * @generated * @ordered */ DOUBLE(2, "double", "double"), /** * The '<em><b>Float</b></em>' literal object. <!-- begin-user-doc --> <!-- end-user-doc --> * * @see #FLOAT_VALUE * @generated * @ordered */ FLOAT(3, "float", "float"), /** * The '<em><b>Boolean</b></em>' literal object. <!-- begin-user-doc --> <!-- end-user-doc --> * * @see #BOOLEAN_VALUE * @generated * @ordered */ BOOLEAN(4, "boolean", "boolean"), /** * The '<em><b>Liststring</b></em>' literal object. <!-- begin-user-doc --> <!-- end-user-doc --> * * @see #LISTSTRING_VALUE * @generated * @ordered */ LISTSTRING(5, "liststring", "liststring"), /** * The '<em><b>String</b></em>' literal object. <!-- begin-user-doc --> <!-- end-user-doc --> * * @see #STRING_VALUE * @generated * @ordered */ STRING(6, "string", "string"), /** * The '<em><b>Any URI</b></em>' literal object. <!-- begin-user-doc --> <!-- end-user-doc --> * * @see #ANY_URI_VALUE * @generated * @ordered */ ANY_URI(7, "anyURI", "anyURI"); /** * The '<em><b>Integer</b></em>' literal value. <!-- begin-user-doc --> * <p> * If the meaning of '<em><b>Integer</b></em>' literal object isn't clear, there really should be more of a * description here... * </p> * <!-- end-user-doc --> * * @see #INTEGER * @model name="integer" * @generated * @ordered */ public static final int INTEGER_VALUE = 0; /** * The '<em><b>Long</b></em>' literal value. <!-- begin-user-doc --> * <p> * If the meaning of '<em><b>Long</b></em>' literal object isn't clear, there really should be more of a description * here... * </p> * <!-- end-user-doc --> * * @see #LONG * @model name="long" * @generated * @ordered */ public static final int LONG_VALUE = 1; /** * The '<em><b>Double</b></em>' literal value. <!-- begin-user-doc --> * <p> * If the meaning of '<em><b>Double</b></em>' literal object isn't clear, there really should be more of a * description here... * </p> * <!-- end-user-doc --> * * @see #DOUBLE * @model name="double" * @generated * @ordered */ public static final int DOUBLE_VALUE = 2; /** * The '<em><b>Float</b></em>' literal value. <!-- begin-user-doc --> * <p> * If the meaning of '<em><b>Float</b></em>' literal object isn't clear, there really should be more of a * description here... * </p> * <!-- end-user-doc --> * * @see #FLOAT * @model name="float" * @generated * @ordered */ public static final int FLOAT_VALUE = 3; /** * The '<em><b>Boolean</b></em>' literal value. <!-- begin-user-doc --> * <p> * If the meaning of '<em><b>Boolean</b></em>' literal object isn't clear, there really should be more of a * description here... * </p> * <!-- end-user-doc --> * * @see #BOOLEAN * @model name="boolean" * @generated * @ordered */ public static final int BOOLEAN_VALUE = 4; /** * The '<em><b>Liststring</b></em>' literal value. <!-- begin-user-doc --> * <p> * If the meaning of '<em><b>Liststring</b></em>' literal object isn't clear, there really should be more of a * description here... * </p> * <!-- end-user-doc --> * * @see #LISTSTRING * @model name="liststring" * @generated * @ordered */ public static final int LISTSTRING_VALUE = 5; /** * The '<em><b>String</b></em>' literal value. <!-- begin-user-doc --> * <p> * If the meaning of '<em><b>String</b></em>' literal object isn't clear, there really should be more of a * description here... * </p> * <!-- end-user-doc --> * * @see #STRING * @model name="string" * @generated * @ordered */ public static final int STRING_VALUE = 6; /** * The '<em><b>Any URI</b></em>' literal value. <!-- begin-user-doc --> * <p> * If the meaning of '<em><b>Any URI</b></em>' literal object isn't clear, there really should be more of a * description here... * </p> * <!-- end-user-doc --> * * @see #ANY_URI * @model name="anyURI" * @generated * @ordered */ public static final int ANY_URI_VALUE = 7; /** * An array of all the '<em><b>Attrtype Type</b></em>' enumerators. <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ private static final AttrtypeType[] VALUES_ARRAY = new AttrtypeType[] { INTEGER, LONG, DOUBLE, FLOAT, BOOLEAN, LISTSTRING, STRING, ANY_URI, }; /** * A public read-only list of all the '<em><b>Attrtype Type</b></em>' enumerators. <!-- begin-user-doc --> <!-- * end-user-doc --> * * @generated */ public static final List<AttrtypeType> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY)); /** * Returns the '<em><b>Attrtype Type</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 AttrtypeType get(String literal) { for (AttrtypeType result : VALUES_ARRAY) { if (result.toString().equals(literal)) { return result; } } return null; } /** * Returns the '<em><b>Attrtype Type</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 AttrtypeType getByName(String name) { for (AttrtypeType result : VALUES_ARRAY) { if (result.getName().equals(name)) { return result; } } return null; } /** * Returns the '<em><b>Attrtype Type</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 AttrtypeType get(int value) { switch (value) { case INTEGER_VALUE: return INTEGER; case LONG_VALUE: return LONG; case DOUBLE_VALUE: return DOUBLE; case FLOAT_VALUE: return FLOAT; case BOOLEAN_VALUE: return BOOLEAN; case LISTSTRING_VALUE: return LISTSTRING; case STRING_VALUE: return STRING; case ANY_URI_VALUE: return ANY_URI; } 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 AttrtypeType(int value, String name, String literal) { this.value = value; this.name = name; this.literal = literal; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ @Override public int getValue() { return value; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ @Override public String getName() { return name; } /** * <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ @Override 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; } } // AttrtypeType