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

edu.emory.mathcs.nlp.common.verbnet.VNSyntax Maven / Gradle / Ivy

The newest version!
/**
 * Copyright 2015, Emory University
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *     http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package edu.emory.mathcs.nlp.common.verbnet;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.Collection;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Set;

import org.w3c.dom.Element;

import edu.emory.mathcs.nlp.common.constant.StringConst;
import edu.emory.mathcs.nlp.common.util.Joiner;
import edu.emory.mathcs.nlp.common.util.StringUtils;
import edu.emory.mathcs.nlp.common.util.XMLUtils;

/**
 * @author Jinho D. Choi ({@code [email protected]})
 */
public class VNSyntax implements Serializable
{
	private static final long serialVersionUID = 3965440701216131397L;
	
	private List l_thematicRoles;
	private Set          s_thematicRoles;
	
	public VNSyntax(Element eSyntax)
	{
		init(eSyntax);
	}
	
	private void init(Element eSyntax)
	{
		List list = XMLUtils.getChildElementList(eSyntax);
		String role;
		
		l_thematicRoles = new ArrayList<>();
		s_thematicRoles = new LinkedHashSet<>();
		
		for (Element element : list)
		{
			role = StringUtils.toLowerCase(XMLUtils.getTrimmedAttribute(element, VNXml.A_VALUE));
			
			if (VNTag.contains(role))
				addThematicRole(new VNThematicRole(element, role));
		}
	}
	
	public Set getThematicRoleSet()
	{
		return s_thematicRoles;
	}

	public void addThematicRole(VNThematicRole role)
	{
		l_thematicRoles.add(role);
		s_thematicRoles.add(role.toString());
	}
	
	public boolean containsThematicRole(String role)
	{
		return s_thematicRoles.contains(role);
	}
	
	public boolean containsThematicRoleAll(String... roles)
	{
		for (String role : roles)
		{
			if (!containsThematicRole(role))
				return false;
		}
		
		return true;
	}
	
	public boolean containsThematicRoleAll(Collection roles)
	{
		for (String role : roles)
		{
			if (!containsThematicRole(role))
				return false;
		}
		
		return true;
	}

	@Override
	public String toString()
	{
		return toString(StringConst.SPACE, true);
	}
	
	public String toString(String delim, boolean sort)
	{
		return Joiner.join(new ArrayList(s_thematicRoles), delim, sort);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy