Package gov.nasa.gsfc.sscweb.schema
Class Conjunction
java.lang.Object
gov.nasa.gsfc.sscweb.schema.Conjunction
SSC query result. Description of conjuction.
<p>Java class for Conjunction complex type</p>.
<p>The following schema fragment specifies the expected content contained within this class.</p>
<pre>{@code
<complexType name="Conjunction">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="TimeInterval" type="{http://sscweb.gsfc.nasa.gov/schema}TimeInterval"/>
<element name="SatelliteDescription" type="{http://sscweb.gsfc.nasa.gov/schema}SatelliteConjunction" maxOccurs="unbounded"/>
</sequence>
</restriction>
</complexContent>
</complexType>
}</pre>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected List<SatelliteConjunction> Description of satellite at time of conjuction.protected TimeIntervalTime interval of query. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionDescription of satellite at time of conjuction.Time interval of query.voidsetTimeInterval(TimeInterval value) Sets the value of the timeInterval property.
-
Field Details
-
timeInterval
Time interval of query. -
satelliteDescription
Description of satellite at time of conjuction.
-
-
Constructor Details
-
Conjunction
public Conjunction()
-
-
Method Details
-
getTimeInterval
Time interval of query.- Returns:
- possible object is
TimeInterval
-
setTimeInterval
Sets the value of the timeInterval property.- Parameters:
value- allowed object isTimeInterval- See Also:
-
getSatelliteDescription
Description of satellite at time of conjuction. Gets the value of the satelliteDescription property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the Jakarta XML Binding object. This is why there is not a
setmethod for the satelliteDescription property.For example, to add a new item, do as follows:
getSatelliteDescription().add(newItem);
Objects of the following type(s) are allowed in the list
SatelliteConjunction- Returns:
- The value of the satelliteDescription property.
-