public enum StripeStyleType extends java.lang.Enum<StripeStyleType>
Enum Constant and Description |
---|
HEADING |
HORIZONTAL_LINE |
LIST_WITH_NUMBER |
LIST_WITHOUT_NUMBER |
NORMAL |
TREE |
Modifier and Type | Method and Description |
---|---|
static StripeStyleType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StripeStyleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StripeStyleType NORMAL
public static final StripeStyleType HEADING
public static final StripeStyleType LIST_WITHOUT_NUMBER
public static final StripeStyleType LIST_WITH_NUMBER
public static final StripeStyleType HORIZONTAL_LINE
public static final StripeStyleType TREE
public static StripeStyleType[] values()
for (StripeStyleType c : StripeStyleType.values()) System.out.println(c);
public static StripeStyleType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null