public static enum TextRenderer.TextJustification extends Enum<TextRenderer.TextJustification>
Modifier and Type | Method and Description |
---|---|
static TextRenderer.TextJustification |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TextRenderer.TextJustification[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextRenderer.TextJustification LEFT
public static final TextRenderer.TextJustification CENTER
public static final TextRenderer.TextJustification RIGHT
public static TextRenderer.TextJustification[] values()
for (TextRenderer.TextJustification c : TextRenderer.TextJustification.values()) System.out.println(c);
public static TextRenderer.TextJustification 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.