All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.as.text_understanding.tree_util.head.SetAndDirection Maven / Gradle / Ivy

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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy