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

edu.stanford.protege.webprotege.search.SearchField Maven / Gradle / Ivy

There is a newer version: 2.0.2-WHO
Show newest version
package edu.stanford.protege.webprotege.search;




import javax.annotation.Nonnull;

import static com.google.common.base.MoreObjects.toStringHelper;

/**
 * Matthew Horridge
 * Stanford Center for Biomedical Informatics Research
 * 21 Apr 2017
 */
public class SearchField {

    private static final SearchField SEARCH_FIELD = new SearchField("Display name");

    private String fieldName;


    private SearchField() {
    }

    public SearchField(@Nonnull String fieldName) {
        this.fieldName = fieldName;
    }

    @Nonnull
    public String getFieldName() {
        return fieldName;
    }

    @Override
    public int hashCode() {
        return fieldName.hashCode();
    }

    @Override
    public boolean equals(Object obj) {
        if (obj == this) {
            return true;
        }
        if (!(obj instanceof SearchField)) {
            return false;
        }
        SearchField other = (SearchField) obj;
        return this.fieldName.equals(other.fieldName);
    }


    @Override
    public String toString() {
        return toStringHelper("SearchField")
                .addValue(fieldName)
                .toString();
    }

    public static SearchField displayName() {
        return SEARCH_FIELD;
    }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy