protected void setValueToMaximumNumber() {
   value = DataTypeRegistry.getMaxNumber(dataType);
 }
 protected StaticsModule(String dataType, long count) {
   this.count = count;
   this.dataType = dataType;
   value = DataTypeRegistry.get(dataType);
 }
 public void setDataType(String dataType) {
   this.dataType = dataType;
   value = DataTypeRegistry.get(dataType);
 }
 protected StaticsModule(String dataType) {
   this.dataType = dataType;
   value = DataTypeRegistry.get(dataType);
 }