Package edu.uci.ics.jung.io.graphml
Interface Metadata
-
- All Known Implementing Classes:
AbstractMetadata
,EdgeMetadata
,EndpointMetadata
,GraphMetadata
,HyperEdgeMetadata
,NodeMetadata
,PortMetadata
public interface Metadata
Interface for any GraphML metadata.- Author:
- Nathan Mittler - nathan.mittler@gmail.com
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
Metadata.MetadataType
Metadata type enumeration
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Metadata.MetadataType
getMetadataType()
Gets the metadata type of this object.java.util.Map<java.lang.String,java.lang.String>
getProperties()
Gets any properties that were associated with this metadata in the GraphML
-
-
-
Method Detail
-
getMetadataType
Metadata.MetadataType getMetadataType()
Gets the metadata type of this object.- Returns:
- the metadata type
-
getProperties
java.util.Map<java.lang.String,java.lang.String> getProperties()
Gets any properties that were associated with this metadata in the GraphML- Returns:
- GraphML properties
-
-