public static enum TextRenderer.FontFamily extends Enum<TextRenderer.FontFamily>
| Enum Constant and Description |
|---|
MONOSPACED |
SANS_SERIF |
SERIF |
| Modifier and Type | Method and Description |
|---|---|
static TextRenderer.FontFamily |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TextRenderer.FontFamily[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextRenderer.FontFamily MONOSPACED
public static final TextRenderer.FontFamily SERIF
public static final TextRenderer.FontFamily SANS_SERIF
public static TextRenderer.FontFamily[] values()
for (TextRenderer.FontFamily c : TextRenderer.FontFamily.values()) System.out.println(c);
public static TextRenderer.FontFamily valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2014–2022 ImageJ. All rights reserved.