All Downloads are FREE. Search and download functionalities are using the official Maven repository.

water.api.WaterMeterIoV3 Maven / Gradle / Ivy

There is a newer version: 3.8.2.9
Show newest version
package water.api;

import water.util.PojoUtils;
import water.util.WaterMeterIo;

public class WaterMeterIoV3 extends RequestSchema {
  @API(help="Index of node to query ticks for (0-based)", direction = API.Direction.INPUT)
  public int nodeidx;

  @API(help="array of IO info", direction = API.Direction.OUTPUT)
  public WaterMeterIo.IoStatsEntry persist_stats[];

  // Version&Schema-specific filling into the implementation object
  public WaterMeterIo createImpl() {
    WaterMeterIo obj = new WaterMeterIo();
    PojoUtils.copyProperties(obj, this, PojoUtils.FieldNaming.CONSISTENT);
    return obj;
  }

  // Version&Schema-specific filling from the implementation object
  public WaterMeterIoV3 fillFromImpl(WaterMeterIo i) {
    PojoUtils.copyProperties(this, i, PojoUtils.FieldNaming.CONSISTENT);
    return this;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy