Enum BackupStage
- java.lang.Object
-
- java.lang.Enum<BackupStage>
-
- jetbrains.buildServer.serverSide.maintenance.BackupStage
-
- All Implemented Interfaces:
Serializable
,Comparable<BackupStage>
public enum BackupStage extends Enum<BackupStage>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BuildLogs
Config
Database
Finishing
PersonalChanges
Preparing
SupplementaryData
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getPhrase()
Returns the human-readable stage phrase - it is a verb possibly with adverbials.boolean
isObjectsAreFiles()
boolean
isObjectsAreTables()
static BackupStage
valueOf(String name)
Returns the enum constant of this type with the specified name.static BackupStage[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Preparing
public static final BackupStage Preparing
-
Database
public static final BackupStage Database
-
Config
public static final BackupStage Config
-
SupplementaryData
public static final BackupStage SupplementaryData
-
BuildLogs
public static final BackupStage BuildLogs
-
PersonalChanges
public static final BackupStage PersonalChanges
-
Finishing
public static final BackupStage Finishing
-
-
Method Detail
-
values
public static BackupStage[] 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 (BackupStage c : BackupStage.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BackupStage 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
-
getPhrase
@NotNull public String getPhrase()
Returns the human-readable stage phrase - it is a verb possibly with adverbials.- Returns:
-
isObjectsAreTables
public boolean isObjectsAreTables()
-
isObjectsAreFiles
public boolean isObjectsAreFiles()
-
-