pops.ale.epc.spec
Class ECStatProfileName

java.lang.Object
  extended by pops.ale.epc.spec.ECStatProfileName

public class ECStatProfileName
extends java.lang.Object

Each valid value of ECStatProfileName names a statistics profile that can be included in an ECReports.
Note :
No enum in Java before JDK1.4. The chosen workaround for implementing an enum-like class is by creating a class that cannot be instantiated and that exports constants defining enumerated values with a string representation.

Author:
pops, R.DAGHER

Field Summary
static ECStatProfileName DecathlonStats
          Decathlon statistics consisting of the following information for each captured tag: firstSightingTime First Time the tag was captured in event cycle lastSightingTime Last Time the tag was captured in event cycle number of readings Number of sightings of the tag in [firstSightingTime, lastSightingTime]
static ECStatProfileName TagTimestamps
          The EPC Global specification defines one statistics profile named TagTimestamps which vendors MAY implement; vendors MAY also implement their own proprietary profiles.
 
Constructor Summary
protected ECStatProfileName()
          Constructor protected.
protected ECStatProfileName(java.lang.String toStringValue)
          Constructor protected.
 
Method Summary
 java.lang.String toString()
          Conversion to string
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

TagTimestamps

public static final ECStatProfileName TagTimestamps
The EPC Global specification defines one statistics profile named TagTimestamps which vendors MAY implement; vendors MAY also implement their own proprietary profiles.


DecathlonStats

public static final ECStatProfileName DecathlonStats
Decathlon statistics consisting of the following information for each captured tag:
firstSightingTime First Time the tag was captured in event cycle
lastSightingTime Last Time the tag was captured in event cycle
number of readings Number of sightings of the tag in [firstSightingTime, lastSightingTime]

Constructor Detail

ECStatProfileName

protected ECStatProfileName()
Constructor protected. Do not instantiate externally.


ECStatProfileName

protected ECStatProfileName(java.lang.String toStringValue)
Constructor protected. Do not instantiate externally.

Method Detail

toString

public java.lang.String toString()
Conversion to string

Overrides:
toString in class java.lang.Object