Package de.xima.fc.common.graphdot
Interface IStyle
-
- All Superinterfaces:
CharSequence
,Serializable
- All Known Implementing Classes:
EEdgeStyle
,ENodeStyle
,ESubGraphStyle
public interface IStyle
A graphviz style for graphs, nodes, or edges.- Since:
- 8.2.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default char
charAt(int index)
default IntStream
chars()
default IntStream
codePoints()
boolean
equals(Object obj)
int
hashCode()
default int
length()
String
styleName()
default CharSequence
subSequence(int start, int end)
-
Methods inherited from interface java.lang.CharSequence
toString
-
-
-
-
Method Detail
-
styleName
String styleName()
- Returns:
- Name of this shape.
-
charAt
default char charAt(int index)
- Specified by:
charAt
in interfaceCharSequence
-
chars
default IntStream chars()
- Specified by:
chars
in interfaceCharSequence
-
codePoints
default IntStream codePoints()
- Specified by:
codePoints
in interfaceCharSequence
-
length
default int length()
- Specified by:
length
in interfaceCharSequence
-
subSequence
default CharSequence subSequence(int start, int end)
- Specified by:
subSequence
in interfaceCharSequence
-
-