Package org.opengis.metadata.citation
Class DateType
- java.lang.Object
-
- org.opengis.util.CodeList<DateType>
-
- org.opengis.metadata.citation.DateType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DateType>
@UML(identifier="CI_DateTypeCode", specification=ISO_19115) public final class DateType extends CodeList<DateType>
Identification of when a given event occurred- Since:
- 2.0
- Version:
- 3.0
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.opengis.util.CodeList
CodeList.Filter
-
-
Field Summary
Fields Modifier and Type Field Description static DateTypeCREATIONDate identifies when the resource was brought into existence.static DateTypePUBLICATIONDate identifies when the resource was issued.static DateTypeREVISIONDate identifies when the resource was examined or re-examined and improved or amended.private static longserialVersionUIDSerial number for compatibility with different versions.private static java.util.List<DateType>VALUESList of all enumerations of this type.
-
Constructor Summary
Constructors Modifier Constructor Description privateDateType(java.lang.String name)Constructs an enum with the given name.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description DateType[]family()Returns the list of enumerations of the same kind than this enum.static DateTypevalueOf(java.lang.String code)Returns the date type that matches the given string, or returns a new one if none match it.static DateType[]values()Returns the list ofDateTypes.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
Serial number for compatibility with different versions.- See Also:
- Constant Field Values
-
VALUES
private static final java.util.List<DateType> VALUES
List of all enumerations of this type. Must be declared before any enum declaration.
-
CREATION
@UML(identifier="creation", obligation=CONDITIONAL, specification=ISO_19115) public static final DateType CREATION
Date identifies when the resource was brought into existence.
-
PUBLICATION
@UML(identifier="publication", obligation=CONDITIONAL, specification=ISO_19115) public static final DateType PUBLICATION
Date identifies when the resource was issued.
-
REVISION
@UML(identifier="revision", obligation=CONDITIONAL, specification=ISO_19115) public static final DateType REVISION
Date identifies when the resource was examined or re-examined and improved or amended.
-
-
Constructor Detail
-
DateType
private DateType(java.lang.String name)
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 Detail
-
values
public static DateType[] values()
Returns the list ofDateTypes.- Returns:
- The list of codes declared in the current JVM.
-
family
public DateType[] family()
Returns the list of enumerations of the same kind than this enum.
-
valueOf
public static DateType valueOf(java.lang.String code)
Returns the date type 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.
-
-