/** */ 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>Class Type</b></em>', and utility * methods for working with them. <!-- end-user-doc --> * * @see net.gexf_1_2.gexf.GexfPackage#getClassType() * @model extendedMetaData="name='class-type'" * @generated */ public enum ClassType implements Enumerator { /** * The '<em><b>Node</b></em>' literal object. <!-- begin-user-doc --> <!-- end-user-doc --> * * @see #NODE_VALUE * @generated * @ordered */ NODE(0, "node", "node"), /** * The '<em><b>Edge</b></em>' literal object. <!-- begin-user-doc --> <!-- end-user-doc --> * * @see #EDGE_VALUE * @generated * @ordered */ EDGE(1, "edge", "edge"); /** * The '<em><b>Node</b></em>' literal value. <!-- begin-user-doc --> * <p> * If the meaning of '<em><b>Node</b></em>' literal object isn't clear, there really should be more of a description * here... * </p> * <!-- end-user-doc --> * * @see #NODE * @model name="node" * @generated * @ordered */ public static final int NODE_VALUE = 0; /** * The '<em><b>Edge</b></em>' literal value. <!-- begin-user-doc --> * <p> * If the meaning of '<em><b>Edge</b></em>' literal object isn't clear, there really should be more of a description * here... * </p> * <!-- end-user-doc --> * * @see #EDGE * @model name="edge" * @generated * @ordered */ public static final int EDGE_VALUE = 1; /** * An array of all the '<em><b>Class Type</b></em>' enumerators. <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ private static final ClassType[] VALUES_ARRAY = new ClassType[] { NODE, EDGE, }; /** * A public read-only list of all the '<em><b>Class Type</b></em>' enumerators. <!-- begin-user-doc --> <!-- * end-user-doc --> * * @generated */ public static final List<ClassType> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY)); /** * Returns the '<em><b>Class 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 ClassType get(String literal) { for (ClassType result : VALUES_ARRAY) { if (result.toString().equals(literal)) { return result; } } return null; } /** * Returns the '<em><b>Class 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 ClassType getByName(String name) { for (ClassType result : VALUES_ARRAY) { if (result.getName().equals(name)) { return result; } } return null; } /** * Returns the '<em><b>Class 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 ClassType get(int value) { switch (value) { case NODE_VALUE: return NODE; case EDGE_VALUE: return EDGE; } 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 ClassType(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; } } // ClassType