Package org.gnome.pango
Enum Class CoverageLevel
- All Implemented Interfaces:
Enumeration
,Serializable
,Comparable<CoverageLevel>
,Constable
@Generated("io.github.jwharm.JavaGI")
public enum CoverageLevel
extends Enum<CoverageLevel>
implements Enumeration
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe character is represented as basically the correct graphical form, but with a stylistic variant inappropriate for the current script.The character is represented as the correct graphical form.The character is represented in a way that may be comprehensible but is not the correct graphical form.The character is not representable with the font. -
Method Summary
Modifier and TypeMethodDescriptionstatic Type
getType()
Get the GType of the CoverageLevel classint
getValue()
Get the numeric value of this enumstatic CoverageLevel
of
(int value) Create a new CoverageLevel for the provided valuestatic CoverageLevel
Returns the enum constant of this class with the specified name.static CoverageLevel[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NONE
The character is not representable with the font. -
FALLBACK
The character is represented in a way that may be comprehensible but is not the correct graphical form. For instance, a Hangul character represented as a a sequence of Jamos, or a Latin transliteration of a Cyrillic word. -
APPROXIMATE
The character is represented as basically the correct graphical form, but with a stylistic variant inappropriate for the current script. -
EXACT
The character is represented as the correct graphical form.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
of
Create a new CoverageLevel for the provided value- Parameters:
value
- the enum value- Returns:
- the enum for the provided value
-
getValue
public int getValue()Get the numeric value of this enum- Specified by:
getValue
in interfaceEnumeration
- Returns:
- the enum value
-
getType
-