public static enum Types.VmppBackupFrequency extends java.lang.Enum<Types.VmppBackupFrequency>
Enum Constant and Description |
---|
DAILY
Daily backups
|
HOURLY
Hourly backups
|
UNRECOGNIZED
The value does not belong to this enumeration
|
WEEKLY
Weekly backups
|
Modifier and Type | Method and Description |
---|---|
static Types.VmppBackupFrequency |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Types.VmppBackupFrequency[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Types.VmppBackupFrequency UNRECOGNIZED
public static final Types.VmppBackupFrequency HOURLY
public static final Types.VmppBackupFrequency DAILY
public static final Types.VmppBackupFrequency WEEKLY
public static Types.VmppBackupFrequency[] values()
for (Types.VmppBackupFrequency c : Types.VmppBackupFrequency.values()) System.out.println(c);
public static Types.VmppBackupFrequency valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null