public enum BackupGroupPriority extends Enum<BackupGroupPriority>
Enum Constant and Description |
---|
HIGH
Indicates highest execution priority for a backup group.
|
LOW
Indicates lowest execution priority for a backup group.
|
MEDIUM
Indicates medium execution priority for a backup group.
|
Modifier and Type | Method and Description |
---|---|
static BackupGroupPriority |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BackupGroupPriority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BackupGroupPriority LOW
public static final BackupGroupPriority MEDIUM
public static final BackupGroupPriority HIGH
public static BackupGroupPriority[] values()
for (BackupGroupPriority c : BackupGroupPriority.values()) System.out.println(c);
public static BackupGroupPriority 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 © 2023 iland Internet Solutions, Corp. All rights reserved.