gov.nasa.arc.pds.xml.generated.UnitsOfSpectralRadiance Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pds4-jparser Show documentation
Show all versions of pds4-jparser Show documentation
This is the parser library for the PDS4 planetary data standard.
//
// This file was generated by the Eclipse Implementation of JAXB, v2.3.4
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2021.12.10 at 07:24:03 AM GMT
//
package gov.nasa.arc.pds.xml.generated;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for Units_of_Spectral_Radiance.
*
*
The following schema fragment specifies the expected content contained within this class.
*
* <simpleType name="Units_of_Spectral_Radiance">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="W*m**-2*sr**-1*Hz**-1"/>
* <enumeration value="W*m**-2*sr**-1*nm**-1"/>
* <enumeration value="W*m**-2*sr**-1*um**-1"/>
* <enumeration value="W*m**-3*sr**-1"/>
* <enumeration value="W/m**2/sr/Hz"/>
* <enumeration value="W/m**2/sr/nm"/>
* <enumeration value="W/m**2/sr/μm"/>
* <enumeration value="W/m**3/sr"/>
* <enumeration value="uW*cm**-2*sr**-1*um**-1"/>
* <enumeration value="μW/cm**2/sr/μm"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "Units_of_Spectral_Radiance")
@XmlEnum
public enum UnitsOfSpectralRadiance {
@XmlEnumValue("W*m**-2*sr**-1*Hz**-1")
W_M_2_SR_1_HZ_1("W*m**-2*sr**-1*Hz**-1"),
@XmlEnumValue("W*m**-2*sr**-1*nm**-1")
W_M_2_SR_1_NM_1("W*m**-2*sr**-1*nm**-1"),
@XmlEnumValue("W*m**-2*sr**-1*um**-1")
W_M_2_SR_1_UM_1("W*m**-2*sr**-1*um**-1"),
@XmlEnumValue("W*m**-3*sr**-1")
W_M_3_SR_1("W*m**-3*sr**-1"),
@XmlEnumValue("W/m**2/sr/Hz")
W_PER_M2_PER_SR_PER_HZ("W/m**2/sr/Hz"),
@XmlEnumValue("W/m**2/sr/nm")
W_PER_M2_PER_SR_PER_NM("W/m**2/sr/nm"),
@XmlEnumValue("W/m**2/sr/\u03bcm")
W_PER_M2_PER_SR_PER_UM("W/m**2/sr/\u03bcm"),
@XmlEnumValue("W/m**3/sr")
W_PER_M3_PER_SR("W/m**3/sr"),
@XmlEnumValue("uW*cm**-2*sr**-1*um**-1")
UW_CM_2_SR_1_UM_1("uW*cm**-2*sr**-1*um**-1"),
@XmlEnumValue("\u03bcW/cm**2/sr/\u03bcm")
UW_PER_CM2_PER_SR_PER_UM("\u03bcW/cm**2/sr/\u03bcm");
private final String value;
UnitsOfSpectralRadiance(String v) {
value = v;
}
public String value() {
return value;
}
public static UnitsOfSpectralRadiance fromValue(String v) {
for (UnitsOfSpectralRadiance c: UnitsOfSpectralRadiance.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}