public enum BlockPermalockResult extends java.lang.Enum<BlockPermalockResult>
Enum Constant and Description |
---|
IncorrectPasswordError
The operation failed because an incorrect password was supplied.
|
Insufficient_Power
There was insufficient power to perform the operation.
|
NonspecificReaderError
The operation failed for an unknown reason.
|
NonspecificTagError
The operation failed for an unknown reason.
|
Success
The operation was successful.
|
TagMemoryOverrunError
The operation failed because it attempted to access memory outside of
the valid range.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static BlockPermalockResult |
valueOf(int blockPermalockResultValue) |
static BlockPermalockResult |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BlockPermalockResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlockPermalockResult Success
public static final BlockPermalockResult Insufficient_Power
public static final BlockPermalockResult NonspecificTagError
public static final BlockPermalockResult NonspecificReaderError
public static final BlockPermalockResult IncorrectPasswordError
public static final BlockPermalockResult TagMemoryOverrunError
public static BlockPermalockResult[] values()
for (BlockPermalockResult c : BlockPermalockResult.values()) System.out.println(c);
public static BlockPermalockResult valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static BlockPermalockResult valueOf(int blockPermalockResultValue)
blockPermalockResultValue
- an integer valuepublic int getValue()