Package com.six.timapi
Class Counters
- java.lang.Object
-
- com.six.timapi.Counters
-
public class Counters extends Object
Contains all counters for a specific counter type. Instances of this class are returned by various calls: Immutable class.
-
-
Constructor Summary
Constructors Constructor Description Counters(CounterType counterType, int seqCounter, List<Counter> counters)
Create counters.Counters(CounterType counterType, int seqCounter, List<Counter> counters, PrintData printData)
Create counters.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Counter>
getCounters()
Counters per brand.CounterType
getCounterType()
Specifies what kind of counter are demanded.PrintData
getPrintData()
Optional print data.int
getSeqCounter()
Activation or period sequence counter depending on type.String
toString()
String representation for debugging purpose.
-
-
-
Constructor Detail
-
Counters
public Counters(CounterType counterType, int seqCounter, List<Counter> counters)
Create counters.
-
Counters
public Counters(CounterType counterType, int seqCounter, List<Counter> counters, PrintData printData)
Create counters.
-
-
Method Detail
-
getCounterType
public CounterType getCounterType()
Specifies what kind of counter are demanded.
-
getSeqCounter
public int getSeqCounter()
Activation or period sequence counter depending on type.
-
getPrintData
public PrintData getPrintData()
Optional print data. Present only inRequestType.COUNTER_REQUEST
.
-
-