Package edu.uci.ics.jung.io.graphml
Class EndpointMetadata
- java.lang.Object
-
- edu.uci.ics.jung.io.graphml.AbstractMetadata
-
- edu.uci.ics.jung.io.graphml.EndpointMetadata
-
- All Implemented Interfaces:
Metadata
public class EndpointMetadata extends AbstractMetadata
Metadata structure for the 'endpoint' GraphML element.- Author:
- Nathan Mittler - nathan.mittler@gmail.com
- See Also:
- "http://graphml.graphdrawing.org/specification.html"
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classEndpointMetadata.EndpointType-
Nested classes/interfaces inherited from interface edu.uci.ics.jung.io.graphml.Metadata
Metadata.MetadataType
-
-
Constructor Summary
Constructors Constructor Description EndpointMetadata()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDescription()EndpointMetadata.EndpointTypegetEndpointType()java.lang.StringgetId()Metadata.MetadataTypegetMetadataType()Gets the metadata type of this object.java.lang.StringgetNode()java.lang.StringgetPort()voidsetDescription(java.lang.String description)voidsetEndpointType(EndpointMetadata.EndpointType endpointType)voidsetId(java.lang.String id)voidsetNode(java.lang.String node)voidsetPort(java.lang.String port)-
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)
-
getPort
public java.lang.String getPort()
-
setPort
public void setPort(java.lang.String port)
-
getNode
public java.lang.String getNode()
-
setNode
public void setNode(java.lang.String node)
-
getEndpointType
public EndpointMetadata.EndpointType getEndpointType()
-
setEndpointType
public void setEndpointType(EndpointMetadata.EndpointType endpointType)
-
getDescription
public java.lang.String getDescription()
-
setDescription
public void setDescription(java.lang.String description)
-
getMetadataType
public Metadata.MetadataType getMetadataType()
Description copied from interface:MetadataGets the metadata type of this object.- Returns:
- the metadata type
-
-