Package net.opengis.omeo.sen1.v_2_0
Enum TimelinessType
- java.lang.Object
-
- java.lang.Enum<TimelinessType>
-
- net.opengis.omeo.sen1.v_2_0.TimelinessType
-
- All Implemented Interfaces:
Serializable,Comparable<TimelinessType>
public enum TimelinessType extends Enum<TimelinessType>
Java class for TimelinessType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="TimelinessType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="NRT_10M"/> <enumeration value="NRT_1H"/> <enumeration value="NRT_3H"/> <enumeration value="FAST_24H"/> <enumeration value="ARCH_6H"/> <enumeration value="ARCH_RUSH"/> <enumeration value="ARCH_NORMAL"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ARCH_6_HArchived products shall be available at pickup points within 6h from data request (acknowledgement of)ARCH_NORMALProducts are retrieved directly from Level-1/Level-2 Sentinel-1 S1 PDGS mission archive (if available) or are processed from archived Level-0 data.ARCH_RUSHProducts shall be available at pickup points within 1.5 hours after data request directly from Sentinel-1 S1 PDGS mission archives, if possible, or as result of further re-processing from the archived Level-0 dataFAST_24_HProducts available at pickup points within 24 hours after sensingNRT_1_HProducts available at pickup points within 1 hour after sensing (for Pass-Through acquisitions only)NRT_10_Mavailable within 10 min after sensing (for Pass-Through acquisitions only)NRT_3_HProducts available at pickup points within 3 hours after sensing
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TimelinessTypefromValue(String v)Stringvalue()static TimelinessTypevalueOf(String name)Returns the enum constant of this type with the specified name.static TimelinessType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NRT_10_M
public static final TimelinessType NRT_10_M
available within 10 min after sensing (for Pass-Through acquisitions only)
-
NRT_1_H
public static final TimelinessType NRT_1_H
Products available at pickup points within 1 hour after sensing (for Pass-Through acquisitions only)
-
NRT_3_H
public static final TimelinessType NRT_3_H
Products available at pickup points within 3 hours after sensing
-
FAST_24_H
public static final TimelinessType FAST_24_H
Products available at pickup points within 24 hours after sensing
-
ARCH_6_H
public static final TimelinessType ARCH_6_H
Archived products shall be available at pickup points within 6h from data request (acknowledgement of)
-
ARCH_RUSH
public static final TimelinessType ARCH_RUSH
Products shall be available at pickup points within 1.5 hours after data request directly from Sentinel-1 S1 PDGS mission archives, if possible, or as result of further re-processing from the archived Level-0 data
-
ARCH_NORMAL
public static final TimelinessType ARCH_NORMAL
Products are retrieved directly from Level-1/Level-2 Sentinel-1 S1 PDGS mission archive (if available) or are processed from archived Level-0 data. In any case, products shall be made available within 7 days after data request (for media delivery) or within 24 hours (for electronic delivery)
-
-
Method Detail
-
values
public static TimelinessType[] 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 (TimelinessType c : TimelinessType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TimelinessType 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 TimelinessType fromValue(String v)
-
-