Package org.opengis.metadata.content
Class ImagingCondition
- All Implemented Interfaces:
Serializable
,Comparable<ImagingCondition>
@UML(identifier="MD_ImagingConditionCode",
specification=ISO_19115)
public final class ImagingCondition
extends CodeList<ImagingCondition>
Code which indicates conditions which may affect the image.
- Since:
- 2.0
- Version:
- 3.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.opengis.util.CodeList
CodeList.Filter
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final ImagingCondition
Portion of the image is blurred.static final ImagingCondition
Portion of the image is partially obscured by cloud coverstatic final ImagingCondition
Acute angle between the plane of the ecliptic (the plane of the Earth's orbit) and the plane of the celestial equator.static final ImagingCondition
Portion of the image is partially obscured by fog.static final ImagingCondition
Portion of the image is partially obscured by heavy smoke or dust.static final ImagingCondition
Image was taken at night.static final ImagingCondition
Image was taken during rainfall.static final ImagingCondition
Image was taken during semi-dark conditions or twilight conditions.private static final long
Serial number for compatibility with different versions.static final ImagingCondition
Portion of the image is obscured by shadow.static final ImagingCondition
Portion of the image is obscured by snow.static final ImagingCondition
The absence of collection data of a given point or area caused by the relative location of topographic features which obstruct the collection path between the collector(s) and the subject(s) of interest.private static final List
<ImagingCondition> List of all enumerations of this type. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
ImagingCondition
(String name) Constructs an enum with the given name. -
Method Summary
Modifier and TypeMethodDescriptionfamily()
Returns the list of enumerations of the same kind than this enum.static ImagingCondition
Returns the imaging condition that matches the given string, or returns a new one if none match it.static ImagingCondition[]
values()
Returns the list ofImagingCondition
s.
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDSerial number for compatibility with different versions.- See Also:
-
VALUES
List of all enumerations of this type. Must be declared before any enum declaration. -
BLURRED_IMAGE
@UML(identifier="blurredImage", obligation=CONDITIONAL, specification=ISO_19115) public static final ImagingCondition BLURRED_IMAGEPortion of the image is blurred. -
CLOUD
@UML(identifier="cloud", obligation=CONDITIONAL, specification=ISO_19115) public static final ImagingCondition CLOUDPortion of the image is partially obscured by cloud cover -
DEGRADING_OBLIQUITY
@UML(identifier="degradingObliquity", obligation=CONDITIONAL, specification=ISO_19115) public static final ImagingCondition DEGRADING_OBLIQUITYAcute angle between the plane of the ecliptic (the plane of the Earth's orbit) and the plane of the celestial equator. -
FOG
@UML(identifier="fog", obligation=CONDITIONAL, specification=ISO_19115) public static final ImagingCondition FOGPortion of the image is partially obscured by fog. -
HEAVY_SMOKE_OR_DUST
@UML(identifier="heavySmokeOrDust", obligation=CONDITIONAL, specification=ISO_19115) public static final ImagingCondition HEAVY_SMOKE_OR_DUSTPortion of the image is partially obscured by heavy smoke or dust. -
NIGHT
@UML(identifier="night", obligation=CONDITIONAL, specification=ISO_19115) public static final ImagingCondition NIGHTImage was taken at night. -
RAIN
@UML(identifier="rain", obligation=CONDITIONAL, specification=ISO_19115) public static final ImagingCondition RAINImage was taken during rainfall. -
SEMI_DARKNESS
@UML(identifier="semiDarkness", obligation=CONDITIONAL, specification=ISO_19115) public static final ImagingCondition SEMI_DARKNESSImage was taken during semi-dark conditions or twilight conditions. -
SHADOW
@UML(identifier="shadow", obligation=CONDITIONAL, specification=ISO_19115) public static final ImagingCondition SHADOWPortion of the image is obscured by shadow. -
SNOW
@UML(identifier="snow", obligation=CONDITIONAL, specification=ISO_19115) public static final ImagingCondition SNOWPortion of the image is obscured by snow. -
TERRAIN_MASKING
@UML(identifier="terrainMasking", obligation=CONDITIONAL, specification=ISO_19115) public static final ImagingCondition TERRAIN_MASKINGThe absence of collection data of a given point or area caused by the relative location of topographic features which obstruct the collection path between the collector(s) and the subject(s) of interest.
-
-
Constructor Details
-
ImagingCondition
Constructs an enum with the given name. The new enum is automatically added to the list returned byvalues()
.- Parameters:
name
- The enum name. This name must not be in use by an other enum of this type.
-
-
Method Details
-
values
Returns the list ofImagingCondition
s.- Returns:
- The list of codes declared in the current JVM.
-
family
Returns the list of enumerations of the same kind than this enum.- Specified by:
family
in classCodeList<ImagingCondition>
- Returns:
- The codes of the same kind than this code.
-
valueOf
Returns the imaging condition that matches the given string, or returns a new one if none match it.- Parameters:
code
- The name of the code to fetch or to create.- Returns:
- A code matching the given name.
-