com.as.text_understanding.tree_util.head.SetAndDirection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of text-understanding Show documentation
Show all versions of text-understanding Show documentation
Analyzing natural-language text, in particular predicate-argument structure.
The newest version!
package com.as.text_understanding.tree_util.head;
import java.util.Set;
/**
* Encapsulates a set of strings and a {@link Direction}.
* Used by {@link PrioritizedTagsContainer}.
*
* Date: Mar 10, 2016
* @author asher
*
*/
public class SetAndDirection
{
public SetAndDirection(Set set, Direction direction)
{
super();
this.set = set;
this.direction = direction;
}
public Set getSet()
{
return set;
}
public Direction getDirection()
{
return direction;
}
private final Set set;
private final Direction direction;
}