Uses of Interface
edu.fiu.jtlex.data.ILink
-
Uses of ILink in edu.fiu.jtlex.data
Classes in edu.fiu.jtlex.data that implement ILink Modifier and Type Class Description classLinkDefault implementation ofILink.Methods in edu.fiu.jtlex.data that return ILink Modifier and Type Method Description ILinkILink. clone()Returns a deep copy of the Link.ILinkITimeMLParser. parseLink(java.lang.String tag, java.lang.String linkString)A parser method which takes the string input representing a Link and parses it to get the different variables from the string.ILinkTimeMLParser. parseLink(java.lang.String tag, java.lang.String linkString)A method for parsing a link from a string.ILinkGraph. removeLink(ILink link)Removes the given link from the graph.ILinkIGraph. removeLink(ILink link)Removes the given link from the graph.ILinkDisconnectivity. trySuggestLink(Timex dct, java.util.ArrayList<Timex> timeExpressions, int numberOfLinks)Attempts to parse a suggested link verifying the tagsILinkIDisconnectivity. trySuggestLink(Timex dct, java.util.ArrayList<Timex> timeExpressions, int numberOfLinks)Attempts to parse a suggested link verifying the tagsMethods in edu.fiu.jtlex.data that return types with arguments of type ILink Modifier and Type Method Description java.util.Set<ILink>IInstance. getInLinks()Returns the inLinks, set of links that have this node as a target.java.util.Set<ILink>INode. getInLinks()Returns a set of links that have this node as a target.java.util.Set<ILink>Instance. getInLinks()Returns the inLinks, set of links that have this node as a target.java.util.Set<ILink>ITimex. getInLinks()Returns the set of TimeML links which come to this node.java.util.Set<ILink>Timex. getInLinks()Returns the set of TimeML links which come to this node.java.util.Set<ILink>Graph. getLinks()Returns a set with all the Links in the TimeML graph, (null) if the TimeML graph is empty.java.util.Set<ILink>IGraph. getLinks()Returns a set with all the Links in the TimeML graph, (null) if the TimeML graph is empty.java.util.Set<ILink>IText. getLinks()Returns a set view of all the links.java.util.Set<ILink>Text. getLinks()Returns the links.java.util.Set<ILink>IInstance. getOutLinks()Returns the outLinks, set of links that have this node as an origin.java.util.Set<ILink>INode. getOutLinks()Returns a set of links that have this node as a origin.java.util.Set<ILink>Instance. getOutLinks()Returns the outLinks, set of links that have this node as an origin.java.util.Set<ILink>ITimex. getOutLinks()Returns the set of TimeML links which come from this node.java.util.Set<ILink>Timex. getOutLinks()Returns the set of TimeML links which come from this node.java.util.Set<ILink>Graph. getPartitionlinks()Returns the set of subordination links.java.util.Set<ILink>IGraph. getPartitionlinks()Returns the set of subordination links.java.util.ArrayList<ILink>Disconnectivity. getSuggestedLinks(Graph graph)Returns a list of suggestedLinks to increase graph connectivityjava.util.ArrayList<ILink>Graph. getSuggestedLinks()Returns a list of suggested links to increase graph connectivity.java.util.ArrayList<ILink>IDisconnectivity. getSuggestedLinks(Graph graph)Returns a list of suggested links to increase graph connectivity.java.util.Set<ILink>IPartitioner. partitionLinks()This method returns the set of partition links (solo subordination timelinks).java.util.Set<ILink>Partitioner. partitionLinks()This method returns the set of partition links (solo subordination timelinks).Methods in edu.fiu.jtlex.data with parameters of type ILink Modifier and Type Method Description voidIInstance. addInLink(ILink link)Adds a link to the inLinks, set of links that have this node as a target.voidINode. addInLink(ILink link)Add a link to the set of IN links from this node.voidInstance. addInLink(ILink link)Adds a link to the inLinks, set of links that have this node as a target.voidITimex. addInLink(ILink link)Add a link to the set of IN links from this node.voidTimex. addInLink(ILink link)Add a link to the set of IN links from this node.booleanGraph. addLink(ILink link)Adds aLinkinto the graph.booleanIGraph. addLink(ILink link)Adds aLinkinto the graph.voidIInstance. addOutLink(ILink link)Adds a link to the outLinks, set of links that have this node as an origin.voidINode. addOutLink(ILink link)Add a link to the set of OUT links from this node.voidInstance. addOutLink(ILink link)Adds a link to the outLinks, set of links that have this node as an origin.voidITimex. addOutLink(ILink link)Add a link to the set of OUT links from this node.voidTimex. addOutLink(ILink link)Add a link to the set of OUT links from this node.booleanGraph. containsLink(ILink link)Return true if the given link exists in the graph.booleanIGraph. containsLink(ILink link)Return true if the given link exists in the graph.voidIInstance. removeInLink(ILink link)Removes a link from the outLinks, set of links that have this node as a target.voidINode. removeInLink(ILink link)Removes a link that has this node as a target.voidInstance. removeInLink(ILink link)Removes a link from the outLinks, set of links that have this node as a target.voidITimex. removeInLink(ILink link)Removes a TimeML link from the set of links that end in this node.voidTimex. removeInLink(ILink link)Removes a TimeML link from the set of links that end in this node.ILinkGraph. removeLink(ILink link)Removes the given link from the graph.ILinkIGraph. removeLink(ILink link)Removes the given link from the graph.voidIInstance. removeOutLink(ILink link)Removes a link from the outLinks, set of links that have this node as an origin.voidINode. removeOutLink(ILink link)Removes a link that has this node as an origin.voidInstance. removeOutLink(ILink link)Removes a link from the outLinks, set of links that have this node as an origin.voidITimex. removeOutLink(ILink link)Removes a TimeML link from the set of links that start in this node.voidTimex. removeOutLink(ILink link)Removes a TimeML link from the set of links that start in this node.voidDisconnectivity. setSuggestedLinks(ILink x, Graph graph)Sets suggestedLinksvoidGraph. setSuggestedLinks(ILink x)Method parameters in edu.fiu.jtlex.data with type arguments of type ILink Modifier and Type Method Description java.util.Set<IGraph>InconsistencyDetector. generateSelfLoopingSubGraphs(java.util.Set<ILink> links)Given a set of links, identifies which are inconsistent self references, and produces a subgraph for each instance.Constructor parameters in edu.fiu.jtlex.data with type arguments of type ILink Constructor Description Timeline(java.util.ArrayList<java.util.List<java.lang.String>> Timeline, java.util.Set<ILink> singleSlinks)Represents a Timeline of a TimeML graph, which is an ordered list of the events extracted from a TimeML Graph.