Package org.glassfish.j2ee.statistics

Examples of org.glassfish.j2ee.statistics.RangeStatistic


    final CountStatistic cs = (CountStatistic)stc;
    return ( s.append(cs.getCount()).toString() );
  }
  private String rangeStatisticSpecificString() {
    final StringBuffer s = new StringBuffer();
    final RangeStatistic rs = (RangeStatistic)stc;
    return ( s.append(rs.getLowWaterMark()).append(SEP).append(rs.getHighWaterMark()).toString() );
  }
View Full Code Here

TOP

Related Classes of org.glassfish.j2ee.statistics.RangeStatistic

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.