public enum StripeStyleType extends 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(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(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 © 2017. All rights reserved.