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

org.opengis.cite.iso19142.FES2 Maven / Gradle / Ivy

There is a newer version: 2.0-r18
Show newest version
package org.opengis.cite.iso19142;

/**
 * Contains various constants pertaining to standard filter expressions
 * specified in ISO 19143:2010.
 * 
 * @see "ISO 19143:2010, Geographic information -- Filter encoding"
 */
public class FES2 {

    private FES2() {
    }

    /** PropertyIsEqualTo operator */
    public static final String EQUAL = "PropertyIsEqualTo";
    /** PropertyIsNotEqualTo operator */
    public static final String NOT_EQUAL = "PropertyIsNotEqualTo";
    /** PropertyIsLessThan operator */
    public static final String LESS_THAN = "PropertyIsLessThan";
    /** PropertyIsGreaterThan operator */
    public static final String GREATER_THAN = "PropertyIsGreaterThan";
    /** PropertyIsLessThanOrEqualTo operator */
    public static final String LESS_THAN_OR_EQUAL = "PropertyIsLessThanOrEqualTo";
    /** PropertyIsGreaterThanOrEqualTo operator */
    public static final String GREATER_THAN_OR_EQUAL = "PropertyIsGreaterThanOrEqualTo";

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy