Java Code Examples for com.tinkerpop.blueprints.Direction#IN

The following examples show how to use com.tinkerpop.blueprints.Direction#IN . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: DominoEdge.java    From org.openntf.domino with Apache License 2.0 5 votes vote down vote up
public String getVertexId(final Direction direction) {
	if (direction == Direction.IN) {
		if (inKey_ == null) {
			inKey_ = getProperty(DominoEdge.IN_NAME, String.class);
		}
		return inKey_;
	}
	if (direction == Direction.OUT) {
		if (outKey_ == null) {
			outKey_ = getProperty(DominoEdge.OUT_NAME, String.class);
		}
		return outKey_;
	}
	return null;
}
 
Example 2
Source File: Event.java    From org.openntf.domino with Apache License 2.0 4 votes vote down vote up
@AdjacencyUnique(label = PlansToAttend.LABEL, direction = Direction.IN)
public PlansToAttend addPlansToAttend(Attendee attendee);
 
Example 3
Source File: Conference.java    From org.openntf.domino with Apache License 2.0 4 votes vote down vote up
@AdjacencyUnique(label = HasPlace.LABEL, direction = Direction.IN)
public HasPlace addLocation(Location location);
 
Example 4
Source File: Graph2Demo.java    From org.openntf.domino with Apache License 2.0 4 votes vote down vote up
@IncidenceUnique(label = kills, direction = Direction.IN)
public void removeKilledBy(Kills kill);
 
Example 5
Source File: ConferenceSession.java    From org.openntf.domino with Apache License 2.0 4 votes vote down vote up
@AdjacencyUnique(label = "presents", direction = Direction.IN)
public Presenter addPresenter(Presenter presenter);
 
Example 6
Source File: Graph2Demo.java    From org.openntf.domino with Apache License 2.0 4 votes vote down vote up
@IncidenceUnique(label = KILLS, direction = Direction.IN)
public Iterable<Kills> getKilledBy();
 
Example 7
Source File: Graph2Demo.java    From org.openntf.domino with Apache License 2.0 4 votes vote down vote up
@IncidenceUnique(label = SPAWNS, direction = Direction.IN)
public Spawns addSpawnedBy(Character character);
 
Example 8
Source File: Commentable.java    From org.openntf.domino with Apache License 2.0 4 votes vote down vote up
@IncidenceUnique(label = Mentions.LABEL, direction = Direction.IN)
public void removeMentions(Mentions mentions);
 
Example 9
Source File: Conference.java    From org.openntf.domino with Apache License 2.0 4 votes vote down vote up
@AdjacencyUnique(label = HasTime.LABEL, direction = Direction.IN)
public void removeTimeSlot(TimeSlot timeSlot);
 
Example 10
Source File: Flower.java    From org.openntf.domino with Apache License 2.0 4 votes vote down vote up
@IncidenceUnique(label = AssignedTo.LABEL_ASSIGNEDTO, direction = Direction.IN)
public List<AssignedTo> getAssignedTo();
 
Example 11
Source File: Conference.java    From org.openntf.domino with Apache License 2.0 4 votes vote down vote up
@AdjacencyUnique(label = HasTime.LABEL, direction = Direction.IN)
public HasTime addTimeSlot(TimeSlot timeSlot);
 
Example 12
Source File: Graph2Demo.java    From org.openntf.domino with Apache License 2.0 4 votes vote down vote up
@IncidenceUnique(label = STARRING, direction = Direction.IN)
public void removeStarring(Crew crew);
 
Example 13
Source File: InPipe.java    From org.openntf.domino with Apache License 2.0 4 votes vote down vote up
public InPipe(final String... labels) {
    super(Direction.IN, labels);
}
 
Example 14
Source File: Conference.java    From org.openntf.domino with Apache License 2.0 4 votes vote down vote up
@AdjacencyUnique(label = HasPlace.LABEL, direction = Direction.IN)
public HasPlace addLocation(Location location);
 
Example 15
Source File: Conference.java    From org.openntf.domino with Apache License 2.0 4 votes vote down vote up
@AdjacencyUnique(label = HasRegistrant.LABEL, direction = Direction.IN)
public HasTime addAttendee(Attendee attendee);
 
Example 16
Source File: Conference.java    From org.openntf.domino with Apache License 2.0 4 votes vote down vote up
@IncidenceUnique(label = HasRegistrant.LABEL, direction = Direction.IN)
public Iterable<HasRegistrant> getHasRegistrants();
 
Example 17
Source File: Graph2Test.java    From org.openntf.domino with Apache License 2.0 4 votes vote down vote up
@IncidenceUnique(label = starring, direction = Direction.IN)
public void removeStarring(Crew crew);
 
Example 18
Source File: Graph2Test.java    From org.openntf.domino with Apache License 2.0 4 votes vote down vote up
@IncidenceUnique(label = starring, direction = Direction.IN)
public Iterable<Starring> getStarring();
 
Example 19
Source File: Commentable.java    From org.openntf.domino with Apache License 2.0 4 votes vote down vote up
@AdjacencyUnique(label = CommentsAbout.LABEL, direction = Direction.IN)
public void removeComment(Comment comment);
 
Example 20
Source File: Conference.java    From org.openntf.domino with Apache License 2.0 4 votes vote down vote up
@AdjacencyUnique(label = HasRegistrant.LABEL, direction = Direction.IN)
public HasTime addAttendee(Attendee attendee);