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
    class  Link
    Default implementation of ILink.
    Methods in edu.fiu.jtlex.data that return ILink 
    Modifier and Type Method Description
    ILink ILink.clone()
    Returns a deep copy of the Link.
    ILink ITimeMLParser.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.
    ILink TimeMLParser.parseLink​(java.lang.String tag, java.lang.String linkString)
    A method for parsing a link from a string.
    ILink Graph.removeLink​(ILink link)
    Removes the given link from the graph.
    ILink IGraph.removeLink​(ILink link)
    Removes the given link from the graph.
    ILink Disconnectivity.trySuggestLink​(Timex dct, java.util.ArrayList<Timex> timeExpressions, int numberOfLinks)
    Attempts to parse a suggested link verifying the tags
    ILink IDisconnectivity.trySuggestLink​(Timex dct, java.util.ArrayList<Timex> timeExpressions, int numberOfLinks)
    Attempts to parse a suggested link verifying the tags
    Methods 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 connectivity
    java.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
    void IInstance.addInLink​(ILink link)
    Adds a link to the inLinks, set of links that have this node as a target.
    void INode.addInLink​(ILink link)
    Add a link to the set of IN links from this node.
    void Instance.addInLink​(ILink link)
    Adds a link to the inLinks, set of links that have this node as a target.
    void ITimex.addInLink​(ILink link)
    Add a link to the set of IN links from this node.
    void Timex.addInLink​(ILink link)
    Add a link to the set of IN links from this node.
    boolean Graph.addLink​(ILink link)
    Adds a Link into the graph.
    boolean IGraph.addLink​(ILink link)
    Adds a Link into the graph.
    void IInstance.addOutLink​(ILink link)
    Adds a link to the outLinks, set of links that have this node as an origin.
    void INode.addOutLink​(ILink link)
    Add a link to the set of OUT links from this node.
    void Instance.addOutLink​(ILink link)
    Adds a link to the outLinks, set of links that have this node as an origin.
    void ITimex.addOutLink​(ILink link)
    Add a link to the set of OUT links from this node.
    void Timex.addOutLink​(ILink link)
    Add a link to the set of OUT links from this node.
    boolean Graph.containsLink​(ILink link)
    Return true if the given link exists in the graph.
    boolean IGraph.containsLink​(ILink link)
    Return true if the given link exists in the graph.
    void IInstance.removeInLink​(ILink link)
    Removes a link from the outLinks, set of links that have this node as a target.
    void INode.removeInLink​(ILink link)
    Removes a link that has this node as a target.
    void Instance.removeInLink​(ILink link)
    Removes a link from the outLinks, set of links that have this node as a target.
    void ITimex.removeInLink​(ILink link)
    Removes a TimeML link from the set of links that end in this node.
    void Timex.removeInLink​(ILink link)
    Removes a TimeML link from the set of links that end in this node.
    ILink Graph.removeLink​(ILink link)
    Removes the given link from the graph.
    ILink IGraph.removeLink​(ILink link)
    Removes the given link from the graph.
    void IInstance.removeOutLink​(ILink link)
    Removes a link from the outLinks, set of links that have this node as an origin.
    void INode.removeOutLink​(ILink link)
    Removes a link that has this node as an origin.
    void Instance.removeOutLink​(ILink link)
    Removes a link from the outLinks, set of links that have this node as an origin.
    void ITimex.removeOutLink​(ILink link)
    Removes a TimeML link from the set of links that start in this node.
    void Timex.removeOutLink​(ILink link)
    Removes a TimeML link from the set of links that start in this node.
    void Disconnectivity.setSuggestedLinks​(ILink x, Graph graph)
    Sets suggestedLinks
    void Graph.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.