com.caen.RFIDLibrary
Enum CAENRFIDLogicalSource.InventoryFlag

java.lang.Object
  extended by java.lang.Enum<CAENRFIDLogicalSource.InventoryFlag>
      extended by com.caen.RFIDLibrary.CAENRFIDLogicalSource.InventoryFlag
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<CAENRFIDLogicalSource.InventoryFlag>
Enclosing class:
CAENRFIDLogicalSource

public static enum CAENRFIDLogicalSource.InventoryFlag
extends java.lang.Enum<CAENRFIDLogicalSource.InventoryFlag>

These are the flag value used in the inventory function that comes with Flag parameter.


Enum Constant Summary
COMPACT
           
CONTINUOS
           
EVENT_TRIGGER
           
FRAMED
           
PC
           
RSSI
           
TID_READING
           
XPC
           
 
Method Summary
 int getValue()
          Gets the value of the flag, to use in Flag parameter.
static CAENRFIDLogicalSource.InventoryFlag valueOf(java.lang.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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

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
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(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - 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.