Package 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>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description 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.
-
-
-
Enum Constant Detail
-
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
-
legendBorder
public static final LineParam legendBorder
-
sequenceArrow
public static final LineParam sequenceArrow
-
arrow
public static final LineParam arrow
-
classBorder
public static final LineParam classBorder
-
objectBorder
public static final LineParam objectBorder
-
usecaseBorder
public static final LineParam usecaseBorder
-
partitionBorder
public static final LineParam partitionBorder
-
packageBorder
public static final LineParam packageBorder
-
swimlaneBorder
public static final LineParam swimlaneBorder
-
activityBorder
public static final LineParam activityBorder
-
titleBorder
public static final LineParam titleBorder
-
diagramBorder
public static final LineParam diagramBorder
-
rectangleBorder
public static final LineParam rectangleBorder
-
hexagonBorder
public static final LineParam hexagonBorder
-
personBorder
public static final LineParam personBorder
-
archimateBorder
public static final LineParam archimateBorder
-
componentBorder
public static final LineParam componentBorder
-
cardBorder
public static final LineParam cardBorder
-
queueBorder
public static final LineParam queueBorder
-
agentBorder
public static final LineParam agentBorder
-
domainBorder
public static final LineParam domainBorder
-
designedDomainBorder
public static final LineParam designedDomainBorder
-
machineBorder
public static final LineParam machineBorder
-
requirementBorder
public static final LineParam requirementBorder
-
-
Method Detail
-
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 nameNullPointerException
- if the argument is null
-
-