Enum AttributeMap.ArrowType
- java.lang.Object
-
- java.lang.Enum<AttributeMap.ArrowType>
-
- org.processmining.models.graphbased.AttributeMap.ArrowType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<AttributeMap.ArrowType>
- Enclosing class:
- AttributeMap
public static enum AttributeMap.ArrowType extends java.lang.Enum<AttributeMap.ArrowType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ARROW_CROSS
ARROW_TECHNICAL_CIRCLE
ARROWTYPE_CIRCLE
ARROWTYPE_CLASSIC
ARROWTYPE_DIAMOND
ARROWTYPE_DOUBLELINE
ARROWTYPE_LINE
ARROWTYPE_NONE
ARROWTYPE_SIMPLE
ARROWTYPE_TECHNICAL
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AttributeMap.ArrowType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static AttributeMap.ArrowType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ARROWTYPE_CLASSIC
public static final AttributeMap.ArrowType ARROWTYPE_CLASSIC
-
ARROWTYPE_TECHNICAL
public static final AttributeMap.ArrowType ARROWTYPE_TECHNICAL
-
ARROWTYPE_SIMPLE
public static final AttributeMap.ArrowType ARROWTYPE_SIMPLE
-
ARROWTYPE_DIAMOND
public static final AttributeMap.ArrowType ARROWTYPE_DIAMOND
-
ARROWTYPE_CIRCLE
public static final AttributeMap.ArrowType ARROWTYPE_CIRCLE
-
ARROWTYPE_LINE
public static final AttributeMap.ArrowType ARROWTYPE_LINE
-
ARROWTYPE_DOUBLELINE
public static final AttributeMap.ArrowType ARROWTYPE_DOUBLELINE
-
ARROWTYPE_NONE
public static final AttributeMap.ArrowType ARROWTYPE_NONE
-
ARROW_CROSS
public static final AttributeMap.ArrowType ARROW_CROSS
-
ARROW_TECHNICAL_CIRCLE
public static final AttributeMap.ArrowType ARROW_TECHNICAL_CIRCLE
-
-
Method Detail
-
values
public static AttributeMap.ArrowType[] 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 (AttributeMap.ArrowType c : AttributeMap.ArrowType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AttributeMap.ArrowType 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
-
-