Package de.xima.fc.common.graphdot
Enum EArrowShape
- java.lang.Object
-
- java.lang.Enum<EArrowShape>
-
- de.xima.fc.common.graphdot.EArrowShape
-
- All Implemented Interfaces:
Serializable
,CharSequence
,Comparable<EArrowShape>
public enum EArrowShape extends Enum<EArrowShape>
Graphviz arrow head shapes.- Since:
- 8.2.0
- Author:
- XIMA MEDIA GmbH
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOX
Thebox
shape.CROW
Thecrow
shape.DIAMOND
Thediamond
shape.DOT
Thedot
shape.EDIAMOND
Theediamond
shape.EMPTY
Theempty
shape.HALFOPEN
Thehalfopen
shape.INV
Theinv
shape.INVDOT
Theinvdot
shape.INVEMPTY
Theinvempty
shape.INVODOT
Theinvodot
shape.NONE
Thenone
shape.NORMAL
Thenormal
shape.OBOX
Theobox
shape.ODIAMOND
Theodiamond
shape.ODOT
Theodot
shape.OPEN
Theopen
shape.TEE
Thetee
shape.VEE
Thevee
shape.
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Default Methods Modifier and Type Method Description String
arrowType()
default char
charAt(int index)
default IntStream
chars()
default IntStream
codePoints()
boolean
equals(Object obj)
int
hashCode()
default int
length()
default CharSequence
subSequence(int start, int end)
String
toString()
static EArrowShape
valueOf(String name)
Returns the enum constant of this type with the specified name.static EArrowShape[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BOX
public static final EArrowShape BOX
Thebox
shape.
-
CROW
public static final EArrowShape CROW
Thecrow
shape.
-
DIAMOND
public static final EArrowShape DIAMOND
Thediamond
shape.
-
DOT
public static final EArrowShape DOT
Thedot
shape.
-
EDIAMOND
public static final EArrowShape EDIAMOND
Theediamond
shape.
-
EMPTY
public static final EArrowShape EMPTY
Theempty
shape.
-
HALFOPEN
public static final EArrowShape HALFOPEN
Thehalfopen
shape.
-
INV
public static final EArrowShape INV
Theinv
shape.
-
INVDOT
public static final EArrowShape INVDOT
Theinvdot
shape.
-
INVEMPTY
public static final EArrowShape INVEMPTY
Theinvempty
shape.
-
INVODOT
public static final EArrowShape INVODOT
Theinvodot
shape.
-
NONE
public static final EArrowShape NONE
Thenone
shape.
-
NORMAL
public static final EArrowShape NORMAL
Thenormal
shape.
-
OBOX
public static final EArrowShape OBOX
Theobox
shape.
-
ODIAMOND
public static final EArrowShape ODIAMOND
Theodiamond
shape.
-
ODOT
public static final EArrowShape ODOT
Theodot
shape.
-
OPEN
public static final EArrowShape OPEN
Theopen
shape.
-
TEE
public static final EArrowShape TEE
Thetee
shape.
-
VEE
public static final EArrowShape VEE
Thevee
shape.
-
-
Method Detail
-
values
public static EArrowShape[] 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 (EArrowShape c : EArrowShape.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EArrowShape 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
-
arrowType
public String arrowType()
- Returns:
- The name of this arrow type.
-
toString
public String toString()
- Specified by:
toString
in interfaceCharSequence
- Overrides:
toString
in classEnum<EArrowShape>
-
charAt
public default char charAt(int index)
- Specified by:
charAt
in interfaceCharSequence
-
chars
public default IntStream chars()
- Specified by:
chars
in interfaceCharSequence
-
codePoints
public default IntStream codePoints()
- Specified by:
codePoints
in interfaceCharSequence
-
length
public default int length()
- Specified by:
length
in interfaceCharSequence
-
subSequence
public default CharSequence subSequence(int start, int end)
- Specified by:
subSequence
in interfaceCharSequence
-
-