net.sourceforge.plantuml
Enum LineParam
java.lang.Object
java.lang.Enum<LineParam>
net.sourceforge.plantuml.LineParam
- All Implemented Interfaces:
- Serializable, Comparable<LineParam>
public enum LineParam
- extends Enum<LineParam>
Method Summary |
static LineParam |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static LineParam[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
sequenceActorBorder
public static final LineParam sequenceActorBorder
sequenceDividerBorder
public static final LineParam sequenceDividerBorder
sequenceLifeLineBorder
public static final LineParam sequenceLifeLineBorder
sequenceParticipantBorder
public static final LineParam sequenceParticipantBorder
noteBorder
public static final LineParam noteBorder
sequenceGroupBorder
public static final LineParam sequenceGroupBorder
sequenceReferenceBorder
public static final LineParam sequenceReferenceBorder
values
public static LineParam[] 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 (LineParam c : LineParam.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static LineParam valueOf(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:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
Copyright © 2013. All Rights Reserved.