Package de.xima.fc.common.graphdot
Interface IGraphDotAttributeList
-
- All Superinterfaces:
IGraphDotElement
,Iterable<Map.Entry<? extends CharSequence,Object>>
,Serializable
- All Known Implementing Classes:
EdgeAttributeList
,GraphAttributeList
,NodeAttributeList
,SubGraphAttributeList
public interface IGraphDotAttributeList extends IGraphDotElement, Iterable<Map.Entry<? extends CharSequence,Object>>
Base type for attribute lists.- Since:
- 8.2.0
- Author:
- XIMA MEDIA GmbH
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description List<? extends Map.Entry<? extends CharSequence,Object>>
getAttributes()
Gets the map with the attribute name mapped to the attribute's value.default Iterator<Map.Entry<? extends CharSequence,Object>>
iterator()
-
Methods inherited from interface de.xima.fc.common.graphdot.IGraphDotElement
toGraphDotString, write
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Method Detail
-
getAttributes
List<? extends Map.Entry<? extends CharSequence,Object>> getAttributes()
Gets the map with the attribute name mapped to the attribute's value.- Returns:
- Map with the attribute name mapped to the attribute's value.
-
iterator
default Iterator<Map.Entry<? extends CharSequence,Object>> iterator()
- Specified by:
iterator
in interfaceIterable<Map.Entry<? extends CharSequence,Object>>
-
-