org.opengis.filter
Interface PropertyIsLike
-
- All Superinterfaces:
- Filter
@XmlElement(value="PropertyIsLike") public interface PropertyIsLike extends Filter
Filter operator that performs the equivalent of the SQL "like" operator on properties of a feature. ThePropertyIsLikeelement is intended to encode a character string comparison operator with pattern matching. The pattern is defined by a combination of regular characters, thewildCardcharacter, thesingleCharcharacter, and theescapecharacter. ThewildCardcharacter matches zero or more characters. ThesingleCharcharacter matches exactly one character. Theescapecharacter is used to escape the meaning of thewildCard,singleCharandescapeitself.- Since:
- GeoAPI 2.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description java.lang.StringgetEscape()Returns the string that can be used in the "literal" property of this object to prefix one of the wild card characters to indicate that it should be matched literally in the content of the feature's property.ExpressiongetExpression()Returns the expression whose value will be compared against the wildcard- containing string provided by the getLiteral() method.java.lang.StringgetLiteral()Returns the wildcard-containing string that will be used to check the feature's properties.java.lang.StringgetSingleChar()Returns the string that can be used in the "literal" property of this object to match exactly one character.java.lang.StringgetWildCard()Returns the string that can be used in the "literal" property of this object to match any sequence of characters.
-
-
-
Method Detail
-
getExpression
@XmlElement(value="PropertyName") Expression getExpression()
Returns the expression whose value will be compared against the wildcard- containing string provided by the getLiteral() method.
-
getLiteral
@XmlElement(value="Literal") java.lang.String getLiteral()
Returns the wildcard-containing string that will be used to check the feature's properties.
-
getWildCard
@XmlElement(value="wildCard") java.lang.String getWildCard()
Returns the string that can be used in the "literal" property of this object to match any sequence of characters. The default value for this property is the one character string "%".
-
getSingleChar
@XmlElement(value="singleChar") java.lang.String getSingleChar()
Returns the string that can be used in the "literal" property of this object to match exactly one character. The default value for this property is the one character string "_".
-
getEscape
@XmlElement(value="escape") java.lang.String getEscape()
Returns the string that can be used in the "literal" property of this object to prefix one of the wild card characters to indicate that it should be matched literally in the content of the feature's property. The default value for this property is the single character "'".
-
-
DataMelt 3.0 © DataMelt by jWork.ORG