Enum MaintenanceUpdateFrequency
- java.lang.Object
-
- java.lang.Enum<MaintenanceUpdateFrequency>
-
- org.gcube.spatial.data.geonetwork.iso.tpl.codelists.MaintenanceUpdateFrequency
-
- All Implemented Interfaces:
Serializable,Comparable<MaintenanceUpdateFrequency>
public enum MaintenanceUpdateFrequency extends Enum<MaintenanceUpdateFrequency>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANNUALLYAS_NEEDEDBIANNUALLYCONTINUALDAILYFORTNIGHTLYIRREGULARMONTHLYNOT_PLANNEDQUARTERLYUNKNOWNWEEKLY
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MaintenanceUpdateFrequencyvalueOf(String name)Returns the enum constant of this type with the specified name.static MaintenanceUpdateFrequency[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONTINUAL
public static final MaintenanceUpdateFrequency CONTINUAL
-
DAILY
public static final MaintenanceUpdateFrequency DAILY
-
WEEKLY
public static final MaintenanceUpdateFrequency WEEKLY
-
FORTNIGHTLY
public static final MaintenanceUpdateFrequency FORTNIGHTLY
-
MONTHLY
public static final MaintenanceUpdateFrequency MONTHLY
-
QUARTERLY
public static final MaintenanceUpdateFrequency QUARTERLY
-
BIANNUALLY
public static final MaintenanceUpdateFrequency BIANNUALLY
-
ANNUALLY
public static final MaintenanceUpdateFrequency ANNUALLY
-
AS_NEEDED
public static final MaintenanceUpdateFrequency AS_NEEDED
-
IRREGULAR
public static final MaintenanceUpdateFrequency IRREGULAR
-
NOT_PLANNED
public static final MaintenanceUpdateFrequency NOT_PLANNED
-
UNKNOWN
public static final MaintenanceUpdateFrequency UNKNOWN
-
-
Method Detail
-
values
public static MaintenanceUpdateFrequency[] 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 (MaintenanceUpdateFrequency c : MaintenanceUpdateFrequency.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MaintenanceUpdateFrequency 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
-
-