public static enum UhfH.LockProperty extends java.lang.Enum<UhfH.LockProperty>
Enum Constant and Description |
---|
noRead_noWrite
no read & no write
|
noRead_Write
no read & write
|
Read_noWrite
read & no write
|
Read_Write
read & write
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static UhfH.LockProperty |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UhfH.LockProperty[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UhfH.LockProperty Read_Write
public static final UhfH.LockProperty Read_noWrite
public static final UhfH.LockProperty noRead_Write
public static final UhfH.LockProperty noRead_noWrite
public static UhfH.LockProperty[] values()
for (UhfH.LockProperty c : UhfH.LockProperty.values()) System.out.println(c);
public static UhfH.LockProperty 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 int getValue()