public static enum RtfTextPara.BorderStyle extends Enum<RtfTextPara.BorderStyle>
| Enum Constant and Description |
|---|
DOTTED
Dotted border.
|
DOUBLE
Double border.
|
DOUBLE_THICKNESS
Double-thickness border.
|
SHADOWED
Shadowed border.
|
SINGLE
Single-thickness border.
|
| Modifier and Type | Method and Description |
|---|---|
static RtfTextPara.BorderStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RtfTextPara.BorderStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RtfTextPara.BorderStyle SINGLE
public static final RtfTextPara.BorderStyle DOUBLE_THICKNESS
public static final RtfTextPara.BorderStyle SHADOWED
public static final RtfTextPara.BorderStyle DOUBLE
public static final RtfTextPara.BorderStyle DOTTED
public static RtfTextPara.BorderStyle[] values()
for (RtfTextPara.BorderStyle c : RtfTextPara.BorderStyle.values()) System.out.println(c);
public static RtfTextPara.BorderStyle 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.