Package net.sourceforge.plantuml.creole
Enum StripeStyleType
- java.lang.Object
-
- java.lang.Enum<StripeStyleType>
-
- net.sourceforge.plantuml.creole.StripeStyleType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<StripeStyleType>
public enum StripeStyleType extends java.lang.Enum<StripeStyleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HEADING
HORIZONTAL_LINE
LIST_WITH_NUMBER
LIST_WITHOUT_NUMBER
NORMAL
TREE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
NORMAL
public static final StripeStyleType NORMAL
-
HEADING
public static final StripeStyleType HEADING
-
LIST_WITHOUT_NUMBER
public static final StripeStyleType LIST_WITHOUT_NUMBER
-
LIST_WITH_NUMBER
public static final StripeStyleType LIST_WITH_NUMBER
-
HORIZONTAL_LINE
public static final StripeStyleType HORIZONTAL_LINE
-
TREE
public static final StripeStyleType TREE
-
-
Method Detail
-
values
public static StripeStyleType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (StripeStyleType c : StripeStyleType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StripeStyleType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-