public static enum RtfTextPara.TabKind extends Enum<RtfTextPara.TabKind>
| Enum Constant and Description |
|---|
CENTER
Centered tab.
|
DECIMAL
Decimal tab.
|
LEFT
Left tab.
|
RIGHT
Flush-right tab.
|
| Modifier and Type | Method and Description |
|---|---|
static RtfTextPara.TabKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RtfTextPara.TabKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RtfTextPara.TabKind LEFT
public static final RtfTextPara.TabKind RIGHT
public static final RtfTextPara.TabKind CENTER
public static final RtfTextPara.TabKind DECIMAL
public static RtfTextPara.TabKind[] values()
for (RtfTextPara.TabKind c : RtfTextPara.TabKind.values()) System.out.println(c);
public static RtfTextPara.TabKind 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 © 2010–2015 Tutego. All rights reserved.