Package net.sourceforge.plantuml.skin
Enum ComponentType
- java.lang.Object
-
- java.lang.Enum<ComponentType>
-
- net.sourceforge.plantuml.skin.ComponentType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ComponentType>
,Styleable
public enum ComponentType extends java.lang.Enum<ComponentType> implements Styleable
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StyleSignature
getDefaultStyleDefinition()
boolean
isArrow()
static ComponentType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ComponentType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ARROW
public static final ComponentType ARROW
-
ACTOR_HEAD
public static final ComponentType ACTOR_HEAD
-
ACTOR_TAIL
public static final ComponentType ACTOR_TAIL
-
BOUNDARY_HEAD
public static final ComponentType BOUNDARY_HEAD
-
BOUNDARY_TAIL
public static final ComponentType BOUNDARY_TAIL
-
CONTROL_HEAD
public static final ComponentType CONTROL_HEAD
-
CONTROL_TAIL
public static final ComponentType CONTROL_TAIL
-
ENTITY_HEAD
public static final ComponentType ENTITY_HEAD
-
ENTITY_TAIL
public static final ComponentType ENTITY_TAIL
-
QUEUE_HEAD
public static final ComponentType QUEUE_HEAD
-
QUEUE_TAIL
public static final ComponentType QUEUE_TAIL
-
DATABASE_HEAD
public static final ComponentType DATABASE_HEAD
-
DATABASE_TAIL
public static final ComponentType DATABASE_TAIL
-
COLLECTIONS_HEAD
public static final ComponentType COLLECTIONS_HEAD
-
COLLECTIONS_TAIL
public static final ComponentType COLLECTIONS_TAIL
-
ALIVE_BOX_CLOSE_CLOSE
public static final ComponentType ALIVE_BOX_CLOSE_CLOSE
-
ALIVE_BOX_CLOSE_OPEN
public static final ComponentType ALIVE_BOX_CLOSE_OPEN
-
ALIVE_BOX_OPEN_CLOSE
public static final ComponentType ALIVE_BOX_OPEN_CLOSE
-
ALIVE_BOX_OPEN_OPEN
public static final ComponentType ALIVE_BOX_OPEN_OPEN
-
DELAY_TEXT
public static final ComponentType DELAY_TEXT
-
DESTROY
public static final ComponentType DESTROY
-
DELAY_LINE
public static final ComponentType DELAY_LINE
-
PARTICIPANT_LINE
public static final ComponentType PARTICIPANT_LINE
-
CONTINUE_LINE
public static final ComponentType CONTINUE_LINE
-
GROUPING_ELSE
public static final ComponentType GROUPING_ELSE
-
GROUPING_HEADER
public static final ComponentType GROUPING_HEADER
-
GROUPING_SPACE
public static final ComponentType GROUPING_SPACE
-
NEWPAGE
public static final ComponentType NEWPAGE
-
NOTE
public static final ComponentType NOTE
-
NOTE_HEXAGONAL
public static final ComponentType NOTE_HEXAGONAL
-
NOTE_BOX
public static final ComponentType NOTE_BOX
-
DIVIDER
public static final ComponentType DIVIDER
-
REFERENCE
public static final ComponentType REFERENCE
-
ENGLOBER
public static final ComponentType ENGLOBER
-
PARTICIPANT_HEAD
public static final ComponentType PARTICIPANT_HEAD
-
PARTICIPANT_TAIL
public static final ComponentType PARTICIPANT_TAIL
-
-
Method Detail
-
values
public static ComponentType[] 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 (ComponentType c : ComponentType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ComponentType 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
-
isArrow
public boolean isArrow()
-
getDefaultStyleDefinition
public StyleSignature getDefaultStyleDefinition()
- Specified by:
getDefaultStyleDefinition
in interfaceStyleable
-
-