public enum QtDataProfile extends java.lang.Enum<QtDataProfile>
Enum Constant and Description |
---|
Private
Select the Private, or confidential, Data Profile, where users have
access to a 128-bit EPC, 512-bit User Memory, 16-bit TID header,
and 48 bit serial number.
|
Public
Select the Public Data Profile, where users have access to the 96-bit
public EPC and the 32 bit base TID.
|
Unknown
Leave the tag data profile as-is.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static QtDataProfile |
valueOf(int qtDataProfileValue) |
static QtDataProfile |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static QtDataProfile[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QtDataProfile Unknown
public static final QtDataProfile Private
public static final QtDataProfile Public
public static QtDataProfile[] values()
for (QtDataProfile c : QtDataProfile.values()) System.out.println(c);
public static QtDataProfile 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 QtDataProfile valueOf(int qtDataProfileValue)
qtDataProfileValue
- integer valuepublic int getValue()