Enum ThinBackupPeriodicWork.BackupType
- java.lang.Object
-
- java.lang.Enum<ThinBackupPeriodicWork.BackupType>
-
- org.jvnet.hudson.plugins.thinbackup.ThinBackupPeriodicWork.BackupType
-
- All Implemented Interfaces:
Serializable
,Comparable<ThinBackupPeriodicWork.BackupType>
- Enclosing class:
- ThinBackupPeriodicWork
public static enum ThinBackupPeriodicWork.BackupType extends Enum<ThinBackupPeriodicWork.BackupType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ThinBackupPeriodicWork.BackupType
valueOf(String name)
Returns the enum constant of this type with the specified name.static ThinBackupPeriodicWork.BackupType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final ThinBackupPeriodicWork.BackupType NONE
-
FULL
public static final ThinBackupPeriodicWork.BackupType FULL
-
DIFF
public static final ThinBackupPeriodicWork.BackupType DIFF
-
-
Method Detail
-
values
public static ThinBackupPeriodicWork.BackupType[] 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 (ThinBackupPeriodicWork.BackupType c : ThinBackupPeriodicWork.BackupType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ThinBackupPeriodicWork.BackupType 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
-
-