public static enum Paragraph.AlignmentEnum extends Enum<Paragraph.AlignmentEnum>
Modifier and Type | Class and Description |
---|---|
static class |
Paragraph.AlignmentEnum.Adapter |
Enum Constant and Description |
---|
CENTER |
DISTRIBUTED |
JUSTIFY |
JUSTIFYLOW |
LEFT |
NOTDEFINED |
RIGHT |
Modifier and Type | Method and Description |
---|---|
static Paragraph.AlignmentEnum |
fromValue(String text) |
String |
getValue() |
String |
toString() |
static Paragraph.AlignmentEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Paragraph.AlignmentEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Paragraph.AlignmentEnum LEFT
public static final Paragraph.AlignmentEnum CENTER
public static final Paragraph.AlignmentEnum RIGHT
public static final Paragraph.AlignmentEnum JUSTIFY
public static final Paragraph.AlignmentEnum JUSTIFYLOW
public static final Paragraph.AlignmentEnum DISTRIBUTED
public static final Paragraph.AlignmentEnum NOTDEFINED
public static Paragraph.AlignmentEnum[] values()
for (Paragraph.AlignmentEnum c : Paragraph.AlignmentEnum.values()) System.out.println(c);
public static Paragraph.AlignmentEnum 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 nullpublic String getValue()
public String toString()
toString
in class Enum<Paragraph.AlignmentEnum>
public static Paragraph.AlignmentEnum fromValue(String text)
Copyright © 2023. All rights reserved.