Package io.dapr.client.domain
Enum UnlockResponseStatus
- java.lang.Object
-
- java.lang.Enum<UnlockResponseStatus>
-
- io.dapr.client.domain.UnlockResponseStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<UnlockResponseStatus>
public enum UnlockResponseStatus extends Enum<UnlockResponseStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INTERNAL_ERROR
Internal error.LOCK_BELONG_TO_OTHERS
The desired target does not match.LOCK_UNEXIST
The target you want to unlock does not exist.SUCCESS
The unlock operation succeeded.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Integer
getCode()
static UnlockResponseStatus
valueOf(int code)
Convert the status code to a UnlockResponseStatus object.static UnlockResponseStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static UnlockResponseStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SUCCESS
public static final UnlockResponseStatus SUCCESS
The unlock operation succeeded.
-
LOCK_UNEXIST
public static final UnlockResponseStatus LOCK_UNEXIST
The target you want to unlock does not exist.
-
LOCK_BELONG_TO_OTHERS
public static final UnlockResponseStatus LOCK_BELONG_TO_OTHERS
The desired target does not match.
-
INTERNAL_ERROR
public static final UnlockResponseStatus INTERNAL_ERROR
Internal error.
-
-
Method Detail
-
values
public static UnlockResponseStatus[] 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 (UnlockResponseStatus c : UnlockResponseStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UnlockResponseStatus 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
-
getCode
public Integer getCode()
-
valueOf
public static UnlockResponseStatus valueOf(int code)
Convert the status code to a UnlockResponseStatus object.- Parameters:
code
- status code- Returns:
- UnlockResponseStatus
-
-