/** */ 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>Timeformat Type</b></em>', and * utility methods for working with them. <!-- end-user-doc --> * * @see net.gexf_1_2.gexf.GexfPackage#getTimeformatType() * @model extendedMetaData="name='timeformat-type'" * @generated */ public enum TimeformatType 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>Double</b></em>' literal object. <!-- begin-user-doc --> <!-- end-user-doc --> * * @see #DOUBLE_VALUE * @generated * @ordered */ DOUBLE(1, "double", "double"), /** * The '<em><b>Date</b></em>' literal object. <!-- begin-user-doc --> <!-- end-user-doc --> * * @see #DATE_VALUE * @generated * @ordered */ DATE(2, "date", "date"), /** * The '<em><b>Date Time</b></em>' literal object. <!-- begin-user-doc --> <!-- end-user-doc --> * * @see #DATE_TIME_VALUE * @generated * @ordered */ DATE_TIME(3, "dateTime", "dateTime"); /** * 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>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 = 1; /** * The '<em><b>Date</b></em>' literal value. <!-- begin-user-doc --> * <p> * If the meaning of '<em><b>Date</b></em>' literal object isn't clear, there really should be more of a description * here... * </p> * <!-- end-user-doc --> * * @see #DATE * @model name="date" * @generated * @ordered */ public static final int DATE_VALUE = 2; /** * The '<em><b>Date Time</b></em>' literal value. <!-- begin-user-doc --> * <p> * If the meaning of '<em><b>Date Time</b></em>' literal object isn't clear, there really should be more of a * description here... * </p> * <!-- end-user-doc --> * * @see #DATE_TIME * @model name="dateTime" * @generated * @ordered */ public static final int DATE_TIME_VALUE = 3; /** * An array of all the '<em><b>Timeformat Type</b></em>' enumerators. <!-- begin-user-doc --> <!-- end-user-doc --> * * @generated */ private static final TimeformatType[] VALUES_ARRAY = new TimeformatType[] { INTEGER, DOUBLE, DATE, DATE_TIME, }; /** * A public read-only list of all the '<em><b>Timeformat Type</b></em>' enumerators. <!-- begin-user-doc --> <!-- * end-user-doc --> * * @generated */ public static final List<TimeformatType> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY)); /** * Returns the '<em><b>Timeformat 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 TimeformatType get(String literal) { for (TimeformatType result : VALUES_ARRAY) { if (result.toString().equals(literal)) { return result; } } return null; } /** * Returns the '<em><b>Timeformat 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 TimeformatType getByName(String name) { for (TimeformatType result : VALUES_ARRAY) { if (result.getName().equals(name)) { return result; } } return null; } /** * Returns the '<em><b>Timeformat 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 TimeformatType get(int value) { switch (value) { case INTEGER_VALUE: return INTEGER; case DOUBLE_VALUE: return DOUBLE; case DATE_VALUE: return DATE; case DATE_TIME_VALUE: return DATE_TIME; } 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 TimeformatType(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; } } // TimeformatType