annis.model.QueryAnnotation Maven / Gradle / Ivy
/*
* Copyright 2009-2011 Collaborative Research Centre SFB 632
*
* 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 annis.model;
import annis.model.QueryNode.TextMatching;
import java.io.Serializable;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
public class QueryAnnotation implements Comparable, Serializable
{
private String namespace;
private String name;
private String value;
private String type;
private TextMatching textMatching;
public QueryAnnotation()
{
this("", "");
}
public QueryAnnotation(String namespace, String name)
{
this(namespace, name, (String) null, (TextMatching) null);
}
public QueryAnnotation(String namespace, String name, String value)
{
this(namespace, name, value, TextMatching.EXACT_EQUAL);
}
public QueryAnnotation(String namespace, String name, String value,
TextMatching textMatching)
{
this.namespace = namespace;
this.name = name;
this.value = value;
this.textMatching = textMatching;
}
public QueryAnnotation(String namespace, String name, String value, String type)
{
this(namespace, name, value);
this.type = type;
}
@Override
public String toString()
{
StringBuffer sb = new StringBuffer();
sb.append(QueryNode.qName(namespace, name));
if (value != null)
{
sb.append(" ");
sb.append(textMatching);
sb.append(" ");
sb.append(value);
}
return sb.toString();
}
public int compareTo(QueryAnnotation o)
{
String name1 = getQualifiedName();
String name2 = o.getQualifiedName();
return name1.compareTo(name2);
}
@Override
public boolean equals(Object obj)
{
if (obj == null || !(obj instanceof QueryAnnotation))
return false;
QueryAnnotation other = (QueryAnnotation) obj;
return new EqualsBuilder().append(this.namespace, other.namespace)
.append(this.name, other.name).append(this.value, other.value)
.append(this.textMatching, other.textMatching).isEquals();
}
@Override
public int hashCode()
{
return new HashCodeBuilder().append(namespace).append(name)
.append(value).append(textMatching).toHashCode();
}
// /// Getter / Setter
public String getValue()
{
return value;
}
public void setValue(String value)
{
this.value = value;
}
public TextMatching getTextMatching()
{
return textMatching;
}
public void setTextMatching(TextMatching textMatching)
{
this.textMatching = textMatching;
}
public String getNamespace()
{
return namespace;
}
public void setNamespace(String namespace)
{
this.namespace = namespace;
}
public String getName()
{
return name;
}
public void setName(String name)
{
this.name = name;
}
public String getQualifiedName()
{
return QueryNode.qName(namespace, name);
}
public String getType()
{
return type;
}
}