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
Modifier and TypeMethodDescriptionList<? extends Map.Entry<? extends CharSequence, Object>> 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 IGraphDotElement
toGraphDotString, writeMethods inherited from interface Iterable
forEach, spliterator
-
Method Details
-
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
- Specified by:
iteratorin interfaceIterable<Map.Entry<? extends CharSequence, Object>>
-