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 BOXTheboxshape.CROWThecrowshape.DIAMONDThediamondshape.DOTThedotshape.EDIAMONDTheediamondshape.EMPTYTheemptyshape.HALFOPENThehalfopenshape.INVTheinvshape.INVDOTTheinvdotshape.INVEMPTYTheinvemptyshape.INVODOTTheinvodotshape.NONEThenoneshape.NORMALThenormalshape.OBOXTheoboxshape.ODIAMONDTheodiamondshape.ODOTTheodotshape.OPENTheopenshape.TEETheteeshape.VEETheveeshape.
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Default Methods Modifier and Type Method Description StringarrowType()default charcharAt(int index)default IntStreamchars()default IntStreamcodePoints()booleanequals(Object obj)inthashCode()default intlength()default CharSequencesubSequence(int start, int end)StringtoString()static EArrowShapevalueOf(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
Theboxshape.
-
CROW
public static final EArrowShape CROW
Thecrowshape.
-
DIAMOND
public static final EArrowShape DIAMOND
Thediamondshape.
-
DOT
public static final EArrowShape DOT
Thedotshape.
-
EDIAMOND
public static final EArrowShape EDIAMOND
Theediamondshape.
-
EMPTY
public static final EArrowShape EMPTY
Theemptyshape.
-
HALFOPEN
public static final EArrowShape HALFOPEN
Thehalfopenshape.
-
INV
public static final EArrowShape INV
Theinvshape.
-
INVDOT
public static final EArrowShape INVDOT
Theinvdotshape.
-
INVEMPTY
public static final EArrowShape INVEMPTY
Theinvemptyshape.
-
INVODOT
public static final EArrowShape INVODOT
Theinvodotshape.
-
NONE
public static final EArrowShape NONE
Thenoneshape.
-
NORMAL
public static final EArrowShape NORMAL
Thenormalshape.
-
OBOX
public static final EArrowShape OBOX
Theoboxshape.
-
ODIAMOND
public static final EArrowShape ODIAMOND
Theodiamondshape.
-
ODOT
public static final EArrowShape ODOT
Theodotshape.
-
OPEN
public static final EArrowShape OPEN
Theopenshape.
-
TEE
public static final EArrowShape TEE
Theteeshape.
-
VEE
public static final EArrowShape VEE
Theveeshape.
-
-
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:
toStringin interfaceCharSequence- Overrides:
toStringin classEnum<EArrowShape>
-
charAt
public default char charAt(int index)
- Specified by:
charAtin interfaceCharSequence
-
chars
public default IntStream chars()
- Specified by:
charsin interfaceCharSequence
-
codePoints
public default IntStream codePoints()
- Specified by:
codePointsin interfaceCharSequence
-
length
public default int length()
- Specified by:
lengthin interfaceCharSequence
-
subSequence
public default CharSequence subSequence(int start, int end)
- Specified by:
subSequencein interfaceCharSequence
-
-