Package edu.uci.ics.jung.io.graphml
Class HyperEdgeMetadata
- java.lang.Object
-
- edu.uci.ics.jung.io.graphml.AbstractMetadata
-
- edu.uci.ics.jung.io.graphml.HyperEdgeMetadata
-
- All Implemented Interfaces:
Metadata
public class HyperEdgeMetadata extends AbstractMetadata
Metadata structure for the 'hyperedge' GraphML element.- See Also:
- "http://graphml.graphdrawing.org/specification.html"
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface edu.uci.ics.jung.io.graphml.Metadata
Metadata.MetadataType
-
-
Constructor Summary
Constructors Constructor Description HyperEdgeMetadata()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddEndpoint(EndpointMetadata endpoint)java.lang.StringgetDescription()java.lang.ObjectgetEdge()java.util.List<EndpointMetadata>getEndpoints()java.lang.StringgetId()Metadata.MetadataTypegetMetadataType()Gets the metadata type of this object.voidsetDescription(java.lang.String description)voidsetEdge(java.lang.Object edge)voidsetId(java.lang.String id)-
Methods inherited from class edu.uci.ics.jung.io.graphml.AbstractMetadata
addData, getProperties, getProperty, setProperty
-
-
-
-
Method Detail
-
getId
public java.lang.String getId()
-
setId
public void setId(java.lang.String id)
-
getDescription
public java.lang.String getDescription()
-
setDescription
public void setDescription(java.lang.String description)
-
addEndpoint
public void addEndpoint(EndpointMetadata endpoint)
-
getEndpoints
public java.util.List<EndpointMetadata> getEndpoints()
-
getEdge
public java.lang.Object getEdge()
-
setEdge
public void setEdge(java.lang.Object edge)
-
getMetadataType
public Metadata.MetadataType getMetadataType()
Description copied from interface:MetadataGets the metadata type of this object.- Returns:
- the metadata type
-
-