/** * <copyright> * </copyright> * * $Id: SVGPropertyType.java,v 1.2 2008/08/07 13:30:05 dstadnik Exp $ */ package org.eclipse.gmf.gmfgraph; 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>SVG Property Type</b></em>', * and utility methods for working with them. * <!-- end-user-doc --> * @see org.eclipse.gmf.gmfgraph.GMFGraphPackage#getSVGPropertyType() * @model * @generated */ public enum SVGPropertyType implements Enumerator { /** * The '<em><b>STRING</b></em>' literal object. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #STRING_VALUE * @generated * @ordered */ STRING(0, "STRING", "STRING"), /** * The '<em><b>COLOR</b></em>' literal object. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #COLOR_VALUE * @generated * @ordered */ COLOR(1, "COLOR", "COLOR"), /** * The '<em><b>FLOAT</b></em>' literal object. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @see #FLOAT_VALUE * @generated * @ordered */ FLOAT(2, "FLOAT", "FLOAT"); /** * 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 * @generated * @ordered */ public static final int STRING_VALUE = 0; /** * The '<em><b>COLOR</b></em>' literal value. * <!-- begin-user-doc --> * <p> * If the meaning of '<em><b>COLOR</b></em>' literal object isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @see #COLOR * @model * @generated * @ordered */ public static final int COLOR_VALUE = 1; /** * 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 * @generated * @ordered */ public static final int FLOAT_VALUE = 2; /** * An array of all the '<em><b>SVG Property Type</b></em>' enumerators. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ private static final SVGPropertyType[] VALUES_ARRAY = new SVGPropertyType[] { STRING, COLOR, FLOAT, }; /** * A public read-only list of all the '<em><b>SVG Property Type</b></em>' enumerators. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static final List<SVGPropertyType> VALUES = Collections.unmodifiableList(Arrays.asList(VALUES_ARRAY)); /** * Returns the '<em><b>SVG Property Type</b></em>' literal with the specified literal value. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static SVGPropertyType get(String literal) { for (int i = 0; i < VALUES_ARRAY.length; ++i) { SVGPropertyType result = VALUES_ARRAY[i]; if (result.toString().equals(literal)) { return result; } } return null; } /** * Returns the '<em><b>SVG Property Type</b></em>' literal with the specified name. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static SVGPropertyType getByName(String name) { for (int i = 0; i < VALUES_ARRAY.length; ++i) { SVGPropertyType result = VALUES_ARRAY[i]; if (result.getName().equals(name)) { return result; } } return null; } /** * Returns the '<em><b>SVG Property Type</b></em>' literal with the specified integer value. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @generated */ public static SVGPropertyType get(int value) { switch (value) { case STRING_VALUE: return STRING; case COLOR_VALUE: return COLOR; case FLOAT_VALUE: return FLOAT; } 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 SVGPropertyType(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; } } //SVGPropertyType