Enum RecoveryStatus
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum RecoveryStatus extends Enum<RecoveryStatus>
-
-
Field Summary
Fields Modifier and Type Field Description private final Stringmessageprivate final Stringnameprivate final Integerordinalprivate final EnumEntries<RecoveryStatus>entries
-
Enum Constant Summary
Enum Constants Enum Constant Description CAN_RECOVERNO_LOADED_ADSMAX_ATTEMPTS_REACHEDFEATURE_DISABLED
-
Method Summary
Modifier and Type Method Description final Array<RecoveryStatus>values()Returns an array containing the constants of this enum type, in the order they're declared. final RecoveryStatusvalueOf(String value)Returns the enum constant of this type with the specified name. final StringgetMessage()final StringgetName()final IntegergetOrdinal()final EnumEntries<RecoveryStatus>getEntries()-
-
Method Detail
-
values
final Array<RecoveryStatus> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
valueOf
final RecoveryStatus valueOf(String value)
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.)
-
getMessage
final String getMessage()
-
getOrdinal
final Integer getOrdinal()
-
getEntries
final EnumEntries<RecoveryStatus> getEntries()
-
-
-
-