SpaceTime.DataModel
Interface SpaceTimeEdge


public interface SpaceTimeEdge

Defines the relationship between two nodes. The source node is the owner of current edge, the target is defined in target attribute


Method Summary
 void AddProperty(SpaceTimeProperty property)
          Add a property to this edge
 SpaceTimeProperty GetProperty(java.lang.String type)
          Find property by its type
 SpaceTimeProperty GetPropertyAt(long index)
          Property at specified index
 long GetPropertyCount()
          Properties count
 java.lang.String Target()
          Edge target
 void Target(java.lang.String value)
           
 java.lang.String Type()
          Edge type
 void Type(java.lang.String value)
           
 

Method Detail

AddProperty

void AddProperty(SpaceTimeProperty property)
Add a property to this edge


GetPropertyCount

long GetPropertyCount()
Properties count


GetPropertyAt

SpaceTimeProperty GetPropertyAt(long index)
Property at specified index


GetProperty

SpaceTimeProperty GetProperty(java.lang.String type)
Find property by its type


Type

java.lang.String Type()
Edge type


Type

void Type(java.lang.String value)

Target

java.lang.String Target()
Edge target


Target

void Target(java.lang.String value)