Package javax.batch.runtime

Examples of javax.batch.runtime.Metric


    new SimpleMetric(null, 0);
  }

  @Test
  public void test() {
    Metric metric = new SimpleMetric(MetricType.FILTER_COUNT, 3);

    assertEquals(3, metric.getValue());
    assertEquals(MetricType.FILTER_COUNT, metric.getType());
  }
View Full Code Here

TOP

Related Classes of javax.batch.runtime.Metric

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.