org.opengis.cite.iso19142.FES2 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ets-wfs20 Show documentation
Show all versions of ets-wfs20 Show documentation
Checks WFS 2.0 implementations for conformance to ISO 19142:2010.
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