Package gov.nasa.arc.pds.xml.generated
Class Aperture
- java.lang.Object
-
- gov.nasa.arc.pds.xml.generated.Aperture
-
public class Aperture extends java.lang.Object
The aperture attribute provides a measure of the effective collecting area of the telescope -- its diameter (if single and circular) or its equivalent diameter (if non-circular and/or an array). For purposes of this definition, aperture efficiency is assumed to be 100 percent.Java class for aperture complex type
.The following schema fragment specifies the expected content contained within this class.
<complexType name="aperture"> <simpleContent> <extension base="<http://pds.nasa.gov/pds4/pds/v1>aperture_WO_Units"> <attribute name="unit" use="required" type="{http://pds.nasa.gov/pds4/pds/v1}Units_of_Length" /> </extension> </simpleContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected UnitsOfLength
unit
protected double
value
-
Constructor Summary
Constructors Constructor Description Aperture()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UnitsOfLength
getUnit()
Gets the value of the unit property.double
getValue()
Gets the value of the value property.void
setUnit(UnitsOfLength value)
Sets the value of the unit property.void
setValue(double value)
Sets the value of the value property.
-
-
-
Field Detail
-
value
protected double value
-
unit
protected UnitsOfLength unit
-
-
Method Detail
-
getValue
public double getValue()
Gets the value of the value property.
-
setValue
public void setValue(double value)
Sets the value of the value property.
-
getUnit
public UnitsOfLength getUnit()
Gets the value of the unit property.- Returns:
- possible object is
UnitsOfLength
-
setUnit
public void setUnit(UnitsOfLength value)
Sets the value of the unit property.- Parameters:
value
- allowed object isUnitsOfLength
-
-