public enum BackupExecutionState extends Enum<BackupExecutionState>
| 限定符和类型 | 类和说明 |
|---|---|
static class |
BackupExecutionState.Adapter |
| 枚举常量和说明 |
|---|
BACKUPEXECUTIONSTATE_UNSUPPORTED_ENUM |
FAILED |
PARTLY_FAILED |
PAUSED |
PAUSING |
RUNNING |
STARTING |
SUCCEED |
| 限定符和类型 | 方法和说明 |
|---|---|
static BackupExecutionState |
fromValue(String value) |
String |
getValue() |
String |
toString() |
static BackupExecutionState |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static BackupExecutionState[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final BackupExecutionState FAILED
public static final BackupExecutionState PARTLY_FAILED
public static final BackupExecutionState PAUSED
public static final BackupExecutionState PAUSING
public static final BackupExecutionState RUNNING
public static final BackupExecutionState STARTING
public static final BackupExecutionState SUCCEED
public static final BackupExecutionState BACKUPEXECUTIONSTATE_UNSUPPORTED_ENUM
public static BackupExecutionState[] values()
for (BackupExecutionState c : BackupExecutionState.values()) System.out.println(c);
public static BackupExecutionState valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public String getValue()
public String toString()
toString 在类中 Enum<BackupExecutionState>public static BackupExecutionState fromValue(String value)
Copyright © 2025. All rights reserved.