Class Progress
-
- All Implemented Interfaces:
Serializable,Comparable<Progress>,ControlledVocabulary
@UML(identifier="MD_ProgressCode", specification=ISO_19115) public final class Progress extends CodeList<Progress>
Status of the dataset or progress of a review.- Since:
- 2.0
- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class CodeList
CodeList.Filter
-
-
Field Summary
Fields Modifier and Type Field Description static ProgressACCEPTEDAgreed to by sponsor.static ProgressCOMPLETEDProduction of the data has been completed.static ProgressDEPRECATEDResource superseded and will become obsolete, use only for historical purposes.static ProgressFINALProgress concluded and no changes will be accepted.static ProgressHISTORICAL_ARCHIVEData has been stored in an offline storage facilitystatic ProgressNOT_ACCEPTEDRejected by sponsor.static ProgressOBSOLETEData is no longer relevant.static ProgressON_GOINGData is continually being updated.static ProgressPENDINGCommitted to, but not yet addressed.static ProgressPLANNEDFixed date has been established upon or by which the data will be created or updated.static ProgressPROPOSEDSuggested that development needs to be undertaken.static ProgressREQUIREDData needs to be generated or updated.static ProgressRETIREDItem is no longer recommended for use.static ProgressSUPERSEDEDReplaced by new.static ProgressTENTATIVEProvisional changes likely before resource becomes final of complete.static ProgressUNDER_DEVELOPMENTData is currently in the process of being created.static ProgressVALIDAcceptable under specific condition.static ProgressWITHDRAWNRemoved from consideration.
-
Method Summary
Modifier and Type Method Description Progress[]family()Returns the list of codes of the same kind than this code list element.static ProgressvalueOf(String code)Returns the progress that matches the given string, or returns a new one if none match it.static Progress[]values()Returns the list ofProgresss.
-
-
-
Field Detail
-
COMPLETED
@UML(identifier="completed", obligation=CONDITIONAL, specification=ISO_19115) public static final Progress COMPLETED
Production of the data has been completed.
-
HISTORICAL_ARCHIVE
@UML(identifier="historicalArchive", obligation=CONDITIONAL, specification=ISO_19115) public static final Progress HISTORICAL_ARCHIVE
Data has been stored in an offline storage facility
-
OBSOLETE
@UML(identifier="obsolete", obligation=CONDITIONAL, specification=ISO_19115) public static final Progress OBSOLETE
Data is no longer relevant.
-
ON_GOING
@UML(identifier="onGoing", obligation=CONDITIONAL, specification=ISO_19115) public static final Progress ON_GOING
Data is continually being updated.
-
PLANNED
@UML(identifier="planned", obligation=CONDITIONAL, specification=ISO_19115) public static final Progress PLANNED
Fixed date has been established upon or by which the data will be created or updated.
-
REQUIRED
@UML(identifier="required", obligation=CONDITIONAL, specification=ISO_19115) public static final Progress REQUIRED
Data needs to be generated or updated.
-
UNDER_DEVELOPMENT
@UML(identifier="underDevelopment", obligation=CONDITIONAL, specification=ISO_19115) public static final Progress UNDER_DEVELOPMENT
Data is currently in the process of being created.
-
FINAL
@UML(identifier="final", obligation=CONDITIONAL, specification=ISO_19115) public static final Progress FINAL
Progress concluded and no changes will be accepted.- Since:
- 3.1
-
PENDING
@UML(identifier="pending", obligation=CONDITIONAL, specification=ISO_19115) public static final Progress PENDING
Committed to, but not yet addressed.- Since:
- 3.1
-
RETIRED
@UML(identifier="retired", obligation=CONDITIONAL, specification=ISO_19115) public static final Progress RETIRED
Item is no longer recommended for use. It has not been superseded by another item.- Since:
- 3.1
-
SUPERSEDED
@UML(identifier="superseded", obligation=CONDITIONAL, specification=ISO_19115) public static final Progress SUPERSEDED
Replaced by new.- Since:
- 3.1
-
TENTATIVE
@UML(identifier="tentative", obligation=CONDITIONAL, specification=ISO_19115) public static final Progress TENTATIVE
Provisional changes likely before resource becomes final of complete.- Since:
- 3.1
-
VALID
@UML(identifier="valid", obligation=CONDITIONAL, specification=ISO_19115) public static final Progress VALID
Acceptable under specific condition.- Since:
- 3.1
-
ACCEPTED
@UML(identifier="accepted", obligation=CONDITIONAL, specification=ISO_19115) public static final Progress ACCEPTED
Agreed to by sponsor.- Since:
- 3.1
-
NOT_ACCEPTED
@UML(identifier="notAccepted", obligation=CONDITIONAL, specification=ISO_19115) public static final Progress NOT_ACCEPTED
Rejected by sponsor.- Since:
- 3.1
-
WITHDRAWN
@UML(identifier="withdrawn", obligation=CONDITIONAL, specification=ISO_19115) public static final Progress WITHDRAWN
Removed from consideration.- Since:
- 3.1
-
PROPOSED
@UML(identifier="proposed", obligation=CONDITIONAL, specification=ISO_19115) public static final Progress PROPOSED
Suggested that development needs to be undertaken.- Since:
- 3.1
-
DEPRECATED
@UML(identifier="deprecated", obligation=CONDITIONAL, specification=ISO_19115) public static final Progress DEPRECATED
Resource superseded and will become obsolete, use only for historical purposes.- Since:
- 3.1
-
-
Method Detail
-
values
public static Progress[] values()
Returns the list ofProgresss.- Returns:
- the list of codes declared in the current JVM.
-
family
public Progress[] family()
Returns the list of codes of the same kind than this code list element. Invoking this method is equivalent to invokingvalues(), except that this method can be invoked on an instance of the parentCodeListclass.
-
valueOf
public static Progress valueOf(String code)
Returns the progress that matches the given string, or returns a new one if none match it. More specifically, this methods returns the first instance for whichname().equals(code)returnstrue. If no existing instance is found, then a new one is created for the given name.- Parameters:
code- the name of the code to fetch or to create.- Returns:
- a code matching the given name.
-
-