public enum GlyphsRasterizationMode extends java.lang.Enum<GlyphsRasterizationMode>
Enum Constant | Description |
---|---|
ALL_GLYPHS_RASTERIZED_LOCALLY |
All glyphs are rasterized locally.
|
IDEOGRAPHS_RASTERIZED_LOCALLY |
Ideographs are rasterized locally, and they are not loaded from the server.
|
NO_GLYPHS_RASTERIZED_LOCALLY |
No glyphs are rasterized locally.
|
Modifier and Type | Method | Description |
---|---|---|
static GlyphsRasterizationMode |
valueOf(int value) |
Get GlyphsRasterizationMode from int value
|
static GlyphsRasterizationMode |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static GlyphsRasterizationMode[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GlyphsRasterizationMode NO_GLYPHS_RASTERIZED_LOCALLY
public static final GlyphsRasterizationMode IDEOGRAPHS_RASTERIZED_LOCALLY
public static final GlyphsRasterizationMode ALL_GLYPHS_RASTERIZED_LOCALLY
public static GlyphsRasterizationMode[] values()
for (GlyphsRasterizationMode c : GlyphsRasterizationMode.values()) System.out.println(c);
public static GlyphsRasterizationMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static GlyphsRasterizationMode valueOf(int value)
value
- the value of the mode