Package gov.nasa.gsfc.sscweb.schema
Class LocationFilter
java.lang.Object
gov.nasa.gsfc.sscweb.schema.LocationFilter
Location filter listing options.
<p>Java class for LocationFilter complex type</p>.
<p>The following schema fragment specifies the expected content contained within this class.</p>
<pre>{@code
<complexType name="LocationFilter">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="Minimum" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
<element name="Maximum" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
<element name="LowerLimit" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
<element name="UpperLimit" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
}</pre>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected DoubleSpecifies the lower limit of values that are to be included in the listing.protected booleanSpecifies whether the maximum value is to be marked by a "v" in the listing.protected booleanSpecifies whether the minimum value is to be marked by a "v" in the listing.protected DoubleSpecifies the upper limit of values that are to be included in the listing. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionSpecifies the lower limit of values that are to be included in the listing.Specifies the upper limit of values that are to be included in the listing.booleanSpecifies whether the maximum value is to be marked by a "v" in the listing.booleanSpecifies whether the minimum value is to be marked by a "v" in the listing.voidsetLowerLimit(Double value) Sets the value of the lowerLimit property.voidsetMaximum(boolean value) Sets the value of the maximum property.voidsetMinimum(boolean value) Sets the value of the minimum property.voidsetUpperLimit(Double value) Sets the value of the upperLimit property.
-
Field Details
-
minimum
protected boolean minimumSpecifies whether the minimum value is to be marked by a "v" in the listing. -
maximum
protected boolean maximumSpecifies whether the maximum value is to be marked by a "v" in the listing. -
lowerLimit
Specifies the lower limit of values that are to be included in the listing. The value is kilometer or degrees as applicable. -
upperLimit
Specifies the upper limit of values that are to be included in the listing. The value is kilometer or degrees as applicable.
-
-
Constructor Details
-
LocationFilter
public LocationFilter()
-
-
Method Details
-
isMinimum
public boolean isMinimum()Specifies whether the minimum value is to be marked by a "v" in the listing. -
setMinimum
public void setMinimum(boolean value) Sets the value of the minimum property. -
isMaximum
public boolean isMaximum()Specifies whether the maximum value is to be marked by a "v" in the listing. -
setMaximum
public void setMaximum(boolean value) Sets the value of the maximum property. -
getLowerLimit
Specifies the lower limit of values that are to be included in the listing. The value is kilometer or degrees as applicable.- Returns:
- possible object is
Double
-
setLowerLimit
Sets the value of the lowerLimit property.- Parameters:
value- allowed object isDouble- See Also:
-
getUpperLimit
Specifies the upper limit of values that are to be included in the listing. The value is kilometer or degrees as applicable.- Returns:
- possible object is
Double
-
setUpperLimit
Sets the value of the upperLimit property.- Parameters:
value- allowed object isDouble- See Also:
-