Package gov.nasa.gsfc.sscweb.schema
Class HemisphereOptions
java.lang.Object
gov.nasa.gsfc.sscweb.schema.HemisphereOptions
Hemisphere listing options.
<p>Java class for HemisphereOptions complex type</p>.
<p>The following schema fragment specifies the expected content contained within this class.</p>
<pre>{@code
<complexType name="HemisphereOptions">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="North" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
<element name="South" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
</sequence>
</restriction>
</complexContent>
</complexType>
}</pre>
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanisNorth()Specifies whether the northern hemisphere region is to be included.booleanisSouth()Specifies whether the southern hemisphere region is to be included.voidsetNorth(boolean value) Sets the value of the north property.voidsetSouth(boolean value) Sets the value of the south property.
-
Field Details
-
north
protected boolean northSpecifies whether the northern hemisphere region is to be included. -
south
protected boolean southSpecifies whether the southern hemisphere region is to be included.
-
-
Constructor Details
-
HemisphereOptions
public HemisphereOptions()
-
-
Method Details
-
isNorth
public boolean isNorth()Specifies whether the northern hemisphere region is to be included. -
setNorth
public void setNorth(boolean value) Sets the value of the north property. -
isSouth
public boolean isSouth()Specifies whether the southern hemisphere region is to be included. -
setSouth
public void setSouth(boolean value) Sets the value of the south property.
-