public enum MaintenanceUpdateFrequency extends Enum<MaintenanceUpdateFrequency>
| Enum Constant and Description |
|---|
ANNUALLY |
AS_NEEDED |
BIANNUALLY |
CONTINUAL |
DAILY |
FORTNIGHTLY |
IRREGULAR |
MONTHLY |
NOT_PLANNED |
QUARTERLY |
UNKNOWN |
WEEKLY |
| Modifier and Type | Method and Description |
|---|---|
static MaintenanceUpdateFrequency |
valueOf(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.
|
public static final MaintenanceUpdateFrequency CONTINUAL
public static final MaintenanceUpdateFrequency DAILY
public static final MaintenanceUpdateFrequency WEEKLY
public static final MaintenanceUpdateFrequency FORTNIGHTLY
public static final MaintenanceUpdateFrequency MONTHLY
public static final MaintenanceUpdateFrequency QUARTERLY
public static final MaintenanceUpdateFrequency BIANNUALLY
public static final MaintenanceUpdateFrequency ANNUALLY
public static final MaintenanceUpdateFrequency AS_NEEDED
public static final MaintenanceUpdateFrequency IRREGULAR
public static final MaintenanceUpdateFrequency NOT_PLANNED
public static final MaintenanceUpdateFrequency UNKNOWN
public static MaintenanceUpdateFrequency[] values()
for (MaintenanceUpdateFrequency c : MaintenanceUpdateFrequency.values()) System.out.println(c);
public static MaintenanceUpdateFrequency valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020. All Rights Reserved.