Package com.caen.RFIDLibrary
Enum CAENRFIDLogicalSource.InventoryFlag
- java.lang.Object
-
- java.lang.Enum<CAENRFIDLogicalSource.InventoryFlag>
-
- com.caen.RFIDLibrary.CAENRFIDLogicalSource.InventoryFlag
-
- All Implemented Interfaces:
Serializable,Comparable<CAENRFIDLogicalSource.InventoryFlag>
- Enclosing class:
- CAENRFIDLogicalSource
public static enum CAENRFIDLogicalSource.InventoryFlag extends Enum<CAENRFIDLogicalSource.InventoryFlag>
These are the flag value used in the inventory function that comes with Flag parameter.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPACTCONTINUOSEVENT_TRIGGERFRAMEDKEEP_ALIVEPCPHASERSSITID_READINGXPC
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetValue()Gets the value of the flag, to use in Flag parameter.static CAENRFIDLogicalSource.InventoryFlagvalueOf(String name)Returns the enum constant of this type with the specified name.static CAENRFIDLogicalSource.InventoryFlag[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RSSI
public static final CAENRFIDLogicalSource.InventoryFlag RSSI
-
FRAMED
public static final CAENRFIDLogicalSource.InventoryFlag FRAMED
-
CONTINUOS
public static final CAENRFIDLogicalSource.InventoryFlag CONTINUOS
-
COMPACT
public static final CAENRFIDLogicalSource.InventoryFlag COMPACT
-
TID_READING
public static final CAENRFIDLogicalSource.InventoryFlag TID_READING
-
EVENT_TRIGGER
public static final CAENRFIDLogicalSource.InventoryFlag EVENT_TRIGGER
-
XPC
public static final CAENRFIDLogicalSource.InventoryFlag XPC
-
PC
public static final CAENRFIDLogicalSource.InventoryFlag PC
-
PHASE
public static final CAENRFIDLogicalSource.InventoryFlag PHASE
-
KEEP_ALIVE
public static final CAENRFIDLogicalSource.InventoryFlag KEEP_ALIVE
-
-
Method Detail
-
values
public static CAENRFIDLogicalSource.InventoryFlag[] 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 (CAENRFIDLogicalSource.InventoryFlag c : CAENRFIDLogicalSource.InventoryFlag.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CAENRFIDLogicalSource.InventoryFlag 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
-
getValue
public int getValue()
Gets the value of the flag, to use in Flag parameter.- Returns:
- An int rapresent the flag value.
-
-