- All Implemented Interfaces:
Serializable
,Comparable<MaintenanceFrequency>
,ControlledVocabulary
@UML(identifier="MD_MaintenanceFrequencyCode",
specification=ISO_19115)
public final class MaintenanceFrequency
extends CodeList<MaintenanceFrequency>
Frequency with which modifications and deletions are made to the data after it is first produced.
- Since:
- 2.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.opengis.util.CodeList
CodeList.Filter
-
Field Summary
Modifier and TypeFieldDescriptionstatic final MaintenanceFrequency
Data is updated every year.static final MaintenanceFrequency
Data is updated as deemed necessary.static final MaintenanceFrequency
Data is updated twice each year.static final MaintenanceFrequency
Resource is updated every 2 years.static final MaintenanceFrequency
Data is repeatedly and frequently updated.static final MaintenanceFrequency
Data is updated each day.static final MaintenanceFrequency
Data is updated every two weeks.static final MaintenanceFrequency
Data is updated in intervals that are uneven in duration.static final MaintenanceFrequency
Data is updated each month.static final MaintenanceFrequency
There are no plans to update the data.static final MaintenanceFrequency
Resource is updated at regular intervals.static final MaintenanceFrequency
Data is updated every three months.static final MaintenanceFrequency
Resource updated twice a monthly.static final MaintenanceFrequency
Frequency of maintenance for the data is not known.static final MaintenanceFrequency
Data is updated on a weekly basis. -
Method Summary
Modifier and TypeMethodDescriptionfamily()
Returns the list of codes of the same kind as this code list element.static MaintenanceFrequency
Returns the maintenance frequency that matches the given string, or returns a new one if none match it.static MaintenanceFrequency[]
values()
Returns the list ofMaintenanceFrequency
s.Methods inherited from class org.opengis.util.CodeList
compareTo, identifier, name, ordinal, readResolve, toString, valueOf, valueOf, valueOf, values
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.opengis.util.ControlledVocabulary
names
-
Field Details
-
CONTINUAL
@UML(identifier="continual", obligation=CONDITIONAL, specification=ISO_19115) public static final MaintenanceFrequency CONTINUALData is repeatedly and frequently updated. -
DAILY
@UML(identifier="daily", obligation=CONDITIONAL, specification=ISO_19115) public static final MaintenanceFrequency DAILYData is updated each day. -
WEEKLY
@UML(identifier="weekly", obligation=CONDITIONAL, specification=ISO_19115) public static final MaintenanceFrequency WEEKLYData is updated on a weekly basis. -
FORTNIGHTLY
@UML(identifier="fortnightly", obligation=CONDITIONAL, specification=ISO_19115) public static final MaintenanceFrequency FORTNIGHTLYData is updated every two weeks. -
MONTHLY
@UML(identifier="monthly", obligation=CONDITIONAL, specification=ISO_19115) public static final MaintenanceFrequency MONTHLYData is updated each month. -
QUARTERLY
@UML(identifier="quarterly", obligation=CONDITIONAL, specification=ISO_19115) public static final MaintenanceFrequency QUARTERLYData is updated every three months. -
BIANNUALLY
@UML(identifier="biannually", obligation=CONDITIONAL, specification=ISO_19115) public static final MaintenanceFrequency BIANNUALLYData is updated twice each year. -
ANNUALLY
@UML(identifier="annually", obligation=CONDITIONAL, specification=ISO_19115) public static final MaintenanceFrequency ANNUALLYData is updated every year. -
AS_NEEDED
@UML(identifier="asNeeded", obligation=CONDITIONAL, specification=ISO_19115) public static final MaintenanceFrequency AS_NEEDEDData is updated as deemed necessary. -
IRREGULAR
@UML(identifier="irregular", obligation=CONDITIONAL, specification=ISO_19115) public static final MaintenanceFrequency IRREGULARData is updated in intervals that are uneven in duration. -
NOT_PLANNED
@UML(identifier="notPlanned", obligation=CONDITIONAL, specification=ISO_19115) public static final MaintenanceFrequency NOT_PLANNEDThere are no plans to update the data. -
UNKNOWN
@UML(identifier="unknown", obligation=CONDITIONAL, specification=ISO_19115) public static final MaintenanceFrequency UNKNOWNFrequency of maintenance for the data is not known. -
PERIODIC
@UML(identifier="periodic", obligation=CONDITIONAL, specification=ISO_19115) public static final MaintenanceFrequency PERIODICResource is updated at regular intervals.- Since:
- 3.1
-
SEMIMONTHLY
@UML(identifier="semimonthly", obligation=CONDITIONAL, specification=ISO_19115) public static final MaintenanceFrequency SEMIMONTHLYResource updated twice a monthly.- Since:
- 3.1
-
BIENNIALLY
@UML(identifier="biennially", obligation=CONDITIONAL, specification=ISO_19115) public static final MaintenanceFrequency BIENNIALLYResource is updated every 2 years.- Since:
- 3.1
-
-
Method Details
-
values
Returns the list ofMaintenanceFrequency
s.- Returns:
- the list of codes declared in the current JVM.
-
family
Returns the list of codes of the same kind as this code list element. Invoking this method is equivalent to invokingvalues()
, except that this method can be invoked on an instance of the parentCodeList
class.- Specified by:
family
in interfaceControlledVocabulary
- Specified by:
family
in classCodeList<MaintenanceFrequency>
- Returns:
- all code values for this code list.
-
valueOf
Returns the maintenance frequency that matches the given string, or returns a new one if none match it. This methods returns the first instance (in declaration order) for which the name is equals, ignoring case, to the given name. 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.
-