Enum VLabelStyle

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<VLabelStyle>, org.eclipse.emf.common.util.Enumerator

    public enum VLabelStyle
    extends java.lang.Enum<VLabelStyle>
    implements org.eclipse.emf.common.util.Enumerator
    A representation of the literals of the enumeration 'Style', and utility methods for working with them.
    See Also:
    VLabelPackage.getVLabelStyle()
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      H0
      The 'H0' literal object.
      H1
      The 'H1' literal object.
      H2
      The 'H2' literal object.
      H3
      The 'H3' literal object.
      H4
      The 'H4' literal object.
      H5
      The 'H5' literal object.
      H6
      The 'H6' literal object.
      H7
      The 'H7' literal object.
      H8
      The 'H8' literal object.
      H9
      The 'H9' literal object.
      SEPARATOR
      The 'Separator' literal object.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static int H0_VALUE
      The 'H0' literal value.
      static int H1_VALUE
      The 'H1' literal value.
      static int H2_VALUE
      The 'H2' literal value.
      static int H3_VALUE
      The 'H3' literal value.
      static int H4_VALUE
      The 'H4' literal value.
      static int H5_VALUE
      The 'H5' literal value.
      static int H6_VALUE
      The 'H6' literal value.
      static int H7_VALUE
      The 'H7' literal value.
      static int H8_VALUE
      The 'H8' literal value.
      static int H9_VALUE
      The 'H9' literal value.
      static int SEPARATOR_VALUE
      The 'Separator' literal value.
      static java.util.List<VLabelStyle> VALUES
      A public read-only list of all the 'VLabel Style' enumerators.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      static VLabelStyle get​(int value)
      Returns the 'VLabel Style' literal with the specified integer value.
      static VLabelStyle get​(java.lang.String literal)
      Returns the 'VLabel Style' literal with the specified literal value.
      static VLabelStyle getByName​(java.lang.String name)
      Returns the 'VLabel Style' literal with the specified name.
      java.lang.String getLiteral()
      java.lang.String getName()
      int getValue()
      java.lang.String toString()
      Returns the literal value of the enumerator, which is its string representation.
      static VLabelStyle valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static VLabelStyle[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Field Detail

      • H0_VALUE

        public static final int H0_VALUE
        The 'H0' literal value.

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

        See Also:
        H0, Constant Field Values
      • H1_VALUE

        public static final int H1_VALUE
        The 'H1' literal value.

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

        See Also:
        H1, Constant Field Values
      • H2_VALUE

        public static final int H2_VALUE
        The 'H2' literal value.

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

        See Also:
        H2, Constant Field Values
      • H3_VALUE

        public static final int H3_VALUE
        The 'H3' literal value.

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

        See Also:
        H3, Constant Field Values
      • H4_VALUE

        public static final int H4_VALUE
        The 'H4' literal value.

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

        See Also:
        H4, Constant Field Values
      • H5_VALUE

        public static final int H5_VALUE
        The 'H5' literal value.

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

        See Also:
        H5, Constant Field Values
      • H6_VALUE

        public static final int H6_VALUE
        The 'H6' literal value.

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

        See Also:
        H6, Constant Field Values
      • H7_VALUE

        public static final int H7_VALUE
        The 'H7' literal value.

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

        See Also:
        H7, Constant Field Values
      • H8_VALUE

        public static final int H8_VALUE
        The 'H8' literal value.

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

        See Also:
        H8, Constant Field Values
      • H9_VALUE

        public static final int H9_VALUE
        The 'H9' literal value.

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

        See Also:
        H9, Constant Field Values
      • SEPARATOR_VALUE

        public static final int SEPARATOR_VALUE
        The 'Separator' literal value.

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

        See Also:
        SEPARATOR, Constant Field Values
      • VALUES

        public static final java.util.List<VLabelStyle> VALUES
        A public read-only list of all the 'VLabel Style' enumerators.
    • Method Detail

      • values

        public static VLabelStyle[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (VLabelStyle c : VLabelStyle.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static VLabelStyle valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • get

        public static VLabelStyle get​(java.lang.String literal)
        Returns the 'VLabel Style' literal with the specified literal value.
      • getByName

        public static VLabelStyle getByName​(java.lang.String name)
        Returns the 'VLabel Style' literal with the specified name.
      • get

        public static VLabelStyle get​(int value)
        Returns the 'VLabel Style' literal with the specified integer value.
      • getValue

        public int getValue()
        Specified by:
        getValue in interface org.eclipse.emf.common.util.Enumerator
      • getName

        public java.lang.String getName()
        Specified by:
        getName in interface org.eclipse.emf.common.util.Enumerator
      • getLiteral

        public java.lang.String getLiteral()
        Specified by:
        getLiteral in interface org.eclipse.emf.common.util.Enumerator
      • toString

        public java.lang.String toString()
        Returns the literal value of the enumerator, which is its string representation.
        Overrides:
        toString in class java.lang.Enum<VLabelStyle>