Uses of Interface
net.sourceforge.e4graph.Vertex

Uses of Vertex in net.sourceforge.e4graph
 

Subinterfaces of Vertex in net.sourceforge.e4graph
 interface BooleanVertex
          The BooleanVertex class provides the abstraction of a vertex which stores a boolean value.
 interface BytesVertex
          The BytesVertex class provides the abstraction of a vertex which stores a byte[] value.
 interface DoubleVertex
          The DoubleVertex class provides the abstraction of a vertex which stores a double value.
 interface FloatVertex
          The FloatVertex class provides the abstraction of a vertex which stores a float value.
 interface IntVertex
          The IntVertex class provides the abstraction of a vertex which stores an int value.
 interface LongVertex
          The LongVertex class provides the abstraction of a vertex which stores an long value.
 interface NodeVertex
          The NodeVertex class provides the abstraction of a vertex which stores a Node value.
 interface StringVertex
          The StringVertex class provides the abstraction of a vertex which stores a String value.
 

Methods in net.sourceforge.e4graph that return Vertex
 Vertex Storage.getVertex(long id)
          Returns the vertex with the specified unique ID if it exists, otherwise returns null.
 Vertex Node.addVertex(java.lang.String name, java.lang.Object value)
          Appends a new vertex with the specified name and value to the end of this node's list of vertices.
 Vertex Node.addVertex(int index, java.lang.String name, java.lang.Object value)
          Inserts a new vertex with the specified name and value into this node's list of vertices at the specified position.
 Vertex Node.getVertex(int index)
          Returns the vertex at the specified index.
 Vertex Node.getVertex(java.lang.String name)
          Returns the first vertex named name, or null if no such vertex exists.
 Vertex Node.getVertex(java.lang.String name, int nth)
          Returns the nth vertex named name, or null if no such vertex exists.
 Vertex Node.addNode(java.lang.String name)
          Creates a new node, and appends a new vertex with the specified name which points to the new node to this node's list of vertices.
 Vertex Node.addNode(int index, java.lang.String name)
          Creates a new node, and inserts a new vertex with the specified name which points to the new node into this node's list of vertices at the specified position.
 

Methods in net.sourceforge.e4graph with parameters of type Vertex
 boolean VertexFilter.accept(Vertex v)
          Returns true if the filter accepts the given vertex; false otherwise.
 java.util.ListIterator Node.vertices(Vertex start)
          Returns an iterator over the list of vertices in this node, in index order, starting with the specified vertex.
 java.util.ListIterator Node.vertices(Vertex start, VertexFilter filter)
          Returns an iterator over the list of vertices in this node accepted by the specified filter, in index order, starting with the specified vertex.
 void VertexModificationListener.vertexModified(Vertex v)
          Invoked when a vertex is modified in the storage with which this listener is registered.
 void VertexDeletionListener.vertexToBeDeleted(Vertex v)
          Invoked when a vertex is about to be deleted from the storage with which this listener is registered.
 void VertexAdditionListener.vertexAdded(Vertex v)
          Invoked when a vertex is added to the storage with which this listener is registered.
 



Copyright (c) 2001, Silver Egg Technology Co., Ltd.