Enum FontCharSet

    • Enum Constant Detail

      • ANSI_LITERAL

        public static final FontCharSet ANSI_LITERAL
        The 'Ansi' literal object.
        See Also:
        ANSI
      • DEFAULT_LITERAL

        public static final FontCharSet DEFAULT_LITERAL
        The 'Default' literal object.
        See Also:
        DEFAULT
      • SYMBOL_LITERAL

        public static final FontCharSet SYMBOL_LITERAL
        The 'Symbol' literal object.
        See Also:
        SYMBOL
      • ARABIC_LITERAL

        public static final FontCharSet ARABIC_LITERAL
        The 'Arabic' literal object.
        See Also:
        ARABIC
      • BALTIC_LITERAL

        public static final FontCharSet BALTIC_LITERAL
        The 'Baltic' literal object.
        See Also:
        BALTIC
      • CHINESE_LITERAL

        public static final FontCharSet CHINESE_LITERAL
        The 'Chinese' literal object.
        See Also:
        CHINESE
      • EAST_EUROPE_LITERAL

        public static final FontCharSet EAST_EUROPE_LITERAL
        The 'East Europe' literal object.
        See Also:
        EAST_EUROPE
      • GB_LITERAL

        public static final FontCharSet GB_LITERAL
        The 'Gb' literal object.
        See Also:
        GB
      • GREEK_LITERAL

        public static final FontCharSet GREEK_LITERAL
        The 'Greek' literal object.
        See Also:
        GREEK
      • HANGEUL_LITERAL

        public static final FontCharSet HANGEUL_LITERAL
        The 'Hangeul' literal object.
        See Also:
        HANGEUL
      • HEBREW_LITERAL

        public static final FontCharSet HEBREW_LITERAL
        The 'Hebrew' literal object.
        See Also:
        HEBREW
      • JOHAB_LITERAL

        public static final FontCharSet JOHAB_LITERAL
        The 'Johab' literal object.
        See Also:
        JOHAB
      • MAC_LITERAL

        public static final FontCharSet MAC_LITERAL
        The 'Mac' literal object.
        See Also:
        MAC
      • OEM_LITERAL

        public static final FontCharSet OEM_LITERAL
        The 'Oem' literal object.
        See Also:
        OEM
      • RUSSIAN_LITERAL

        public static final FontCharSet RUSSIAN_LITERAL
        The 'Russian' literal object.
        See Also:
        RUSSIAN
      • SHIFTJIS_LITERAL

        public static final FontCharSet SHIFTJIS_LITERAL
        The 'Shiftjis' literal object.
        See Also:
        SHIFTJIS
      • THAI_LITERAL

        public static final FontCharSet THAI_LITERAL
        The 'Thai' literal object.
        See Also:
        THAI
      • TURKISH_LITERAL

        public static final FontCharSet TURKISH_LITERAL
        The 'Turkish' literal object.
        See Also:
        TURKISH
      • VIETNAMESE_LITERAL

        public static final FontCharSet VIETNAMESE_LITERAL
        The 'Vietnamese' literal object.
        See Also:
        VIETNAMESE
    • Method Detail

      • values

        public static FontCharSet[] 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 (FontCharSet c : FontCharSet.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static FontCharSet valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • get

        public static FontCharSet get​(String literal)
        Returns the 'Font Char Set' literal with the specified literal value.
        Parameters:
        literal - the literal.
        Returns:
        the matching enumerator or null.
      • getByName

        public static FontCharSet getByName​(String name)
        Returns the 'Font Char Set' literal with the specified name.
        Parameters:
        name - the name.
        Returns:
        the matching enumerator or null.
      • get

        public static FontCharSet get​(int value)
        Returns the 'Font Char Set' literal with the specified integer value.
        Parameters:
        value - the integer value.
        Returns:
        the matching enumerator or null.
      • getValue

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

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

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

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