Package net.opengis.omeo.sen1.v_2_0
Enum QCResultType
- java.lang.Object
-
- java.lang.Enum<QCResultType>
-
- net.opengis.omeo.sen1.v_2_0.QCResultType
-
- All Implemented Interfaces:
Serializable,Comparable<QCResultType>
public enum QCResultType extends Enum<QCResultType>
Java class for QCResultType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="QCResultType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="NOMINAL_DATA_QUALITY"/> <enumeration value="DEGRADED_PRODUCT_RADIOMETRY"/> <enumeration value="DEGRADED_PRODUCT_GEOLOCATION"/> <enumeration value="DEGRADED_RADIOMETRIC_CALIBRATION"/> <enumeration value="DEGRADED_PLATFORM_POINTING"/> <enumeration value="DEGRADED_ORBIT_CONTROL"/> <enumeration value="DEGRADED_PERFORMANCE_INSTRUMENT_ANOMALY"/> <enumeration value="COMPLETE_PRODUCT_DEGRADATION"/> <enumeration value="SLICE_PRODUCT_NON_CONCATENABLE"/> </restriction> </simpleType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static QCResultTypefromValue(String v)Stringvalue()static QCResultTypevalueOf(String name)Returns the enum constant of this type with the specified name.static QCResultType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOMINAL_DATA_QUALITY
public static final QCResultType NOMINAL_DATA_QUALITY
-
DEGRADED_PRODUCT_RADIOMETRY
public static final QCResultType DEGRADED_PRODUCT_RADIOMETRY
-
DEGRADED_PRODUCT_GEOLOCATION
public static final QCResultType DEGRADED_PRODUCT_GEOLOCATION
-
DEGRADED_RADIOMETRIC_CALIBRATION
public static final QCResultType DEGRADED_RADIOMETRIC_CALIBRATION
-
DEGRADED_PLATFORM_POINTING
public static final QCResultType DEGRADED_PLATFORM_POINTING
-
DEGRADED_ORBIT_CONTROL
public static final QCResultType DEGRADED_ORBIT_CONTROL
-
DEGRADED_PERFORMANCE_INSTRUMENT_ANOMALY
public static final QCResultType DEGRADED_PERFORMANCE_INSTRUMENT_ANOMALY
-
COMPLETE_PRODUCT_DEGRADATION
public static final QCResultType COMPLETE_PRODUCT_DEGRADATION
-
SLICE_PRODUCT_NON_CONCATENABLE
public static final QCResultType SLICE_PRODUCT_NON_CONCATENABLE
-
-
Method Detail
-
values
public static QCResultType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (QCResultType c : QCResultType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static QCResultType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
value
public String value()
-
fromValue
public static QCResultType fromValue(String v)
-
-