Counter constructor

Counter(
  1. String name,
  2. CounterType type
)

Creates a instance of the data obejct

  • name a counter name.
  • type a counter type.

Implementation

Counter(String name, CounterType type)
    : name = name,
      type = type;