public static enum RtfTextPara.TabLead extends Enum<RtfTextPara.TabLead>
| Enum Constant and Description |
|---|
DOTS
Leader dots.
|
EQUALS_SIGN
Leader equal sign.
|
HYPHENS
Leader hyphens.
|
THICK_LINE
Leader thick line..
|
UNDERLINE
Leader underline.
|
| Modifier and Type | Method and Description |
|---|---|
static RtfTextPara.TabLead |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RtfTextPara.TabLead[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RtfTextPara.TabLead DOTS
public static final RtfTextPara.TabLead HYPHENS
public static final RtfTextPara.TabLead UNDERLINE
public static final RtfTextPara.TabLead THICK_LINE
public static final RtfTextPara.TabLead EQUALS_SIGN
public static RtfTextPara.TabLead[] values()
for (RtfTextPara.TabLead c : RtfTextPara.TabLead.values()) System.out.println(c);
public static RtfTextPara.TabLead 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.