Package de.xima.fc.common.graphdot
Enum EStandardAttribute
- java.lang.Object
-
- java.lang.Enum<EStandardAttribute>
-
- de.xima.fc.common.graphdot.EStandardAttribute
-
- All Implemented Interfaces:
Serializable
,CharSequence
,Comparable<EStandardAttribute>
public enum EStandardAttribute extends Enum<EStandardAttribute>
Standard graphviz attribute names.- Since:
- 8.2.0
- Author:
- XIMA MEDIA GmbH
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Default Methods Modifier and Type Method Description String
attributeName()
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 EStandardAttribute
valueOf(String name)
Returns the enum constant of this type with the specified name.static EStandardAttribute[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ARROW_HEAD
public static final EStandardAttribute ARROW_HEAD
The arrowhead attribute.
-
ARROW_SIZE
public static final EStandardAttribute ARROW_SIZE
The arrowsize attribute.
-
ARROW_TAIL
public static final EStandardAttribute ARROW_TAIL
The arrowtail attribute.
-
BACKGROUND_COLOR
public static final EStandardAttribute BACKGROUND_COLOR
The bgcolor attribute.
-
CLASS
public static final EStandardAttribute CLASS
The class attribute.
-
CLUSTER
public static final EStandardAttribute CLUSTER
The cluster attribute.
-
CLUSTER_RANK
public static final EStandardAttribute CLUSTER_RANK
The clusterrank attribute.
-
COLOR
public static final EStandardAttribute COLOR
The color attribute.
-
CONSTRAINT
public static final EStandardAttribute CONSTRAINT
The constraint attribute.
-
DIRECTION
public static final EStandardAttribute DIRECTION
The dir attribute.
-
EDGE_TOOLTIP
public static final EStandardAttribute EDGE_TOOLTIP
The edgetooltip attribute.
-
EXTERNAL_LABEL
public static final EStandardAttribute EXTERNAL_LABEL
The xlabel attribute.
-
EXTERNAL_LABEL_POSITION
public static final EStandardAttribute EXTERNAL_LABEL_POSITION
The xlp attribute.
-
FILL_COLOR
public static final EStandardAttribute FILL_COLOR
The fillcolor attribute.
-
FONT_COLOR
public static final EStandardAttribute FONT_COLOR
The fontcolor attribute.
-
FONT_NAME
public static final EStandardAttribute FONT_NAME
The fontname attribute.
-
FONT_SIZE
public static final EStandardAttribute FONT_SIZE
The fontsize attribute.
-
HEAD_LABEL
public static final EStandardAttribute HEAD_LABEL
The headlabel attribute.
-
HEAD_TOOLTIP
public static final EStandardAttribute HEAD_TOOLTIP
The headtooltip attribute.
-
HEIGHT
public static final EStandardAttribute HEIGHT
The height attribute.
-
LABEL
public static final EStandardAttribute LABEL
The label attribute.
-
LABEL_CENTER_POSITION
public static final EStandardAttribute LABEL_CENTER_POSITION
The lp attribute.
-
LABEL_FONT_COLOR
public static final EStandardAttribute LABEL_FONT_COLOR
The labelfontcolor attribute.
-
LABEL_LOCATION
public static final EStandardAttribute LABEL_LOCATION
The labelloc attribute.
-
LABEL_TOOLTIP
public static final EStandardAttribute LABEL_TOOLTIP
The labeltooltip attribute.
-
MARGIN
public static final EStandardAttribute MARGIN
The margin attribute.
-
NODE_SEPARATION
public static final EStandardAttribute NODE_SEPARATION
The nodesep attribute.
-
ORDERING
public static final EStandardAttribute ORDERING
The ordering attribute.
-
PEN_COLOR
public static final EStandardAttribute PEN_COLOR
The pencolor attribute.
-
PEN_WIDTH
public static final EStandardAttribute PEN_WIDTH
The arrowsize attribute.
-
PERIPHERIES
public static final EStandardAttribute PERIPHERIES
The peripheries attribute.
-
RANK_DIRECTION
public static final EStandardAttribute RANK_DIRECTION
The rankdir attribute.
-
RANK_SEPARATION
public static final EStandardAttribute RANK_SEPARATION
The ranksep attribute.
-
ROOT
public static final EStandardAttribute ROOT
The root attribute.
-
SHAPE
public static final EStandardAttribute SHAPE
The shape attribute.
-
SHOW_BOXES
public static final EStandardAttribute SHOW_BOXES
The showboxes attribute.
-
STYLE
public static final EStandardAttribute STYLE
The style attribute.
-
TAIL_LABEL
public static final EStandardAttribute TAIL_LABEL
The taillabel attribute.
-
TAIL_TOOLTIP
public static final EStandardAttribute TAIL_TOOLTIP
The tailtooltip attribute.
-
TOOLTIP
public static final EStandardAttribute TOOLTIP
The tooltip attribute.
-
TRUE_COLOR
public static final EStandardAttribute TRUE_COLOR
The truecolor attribute.
-
WIDTH
public static final EStandardAttribute WIDTH
The width attribute.
-
-
Method Detail
-
values
public static EStandardAttribute[] 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 (EStandardAttribute c : EStandardAttribute.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EStandardAttribute 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
-
attributeName
public String attributeName()
- Returns:
- Name of this attribute.
-
toString
public String toString()
- Specified by:
toString
in interfaceCharSequence
- Overrides:
toString
in classEnum<EStandardAttribute>
-
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
-
-