示例#1
0
 /** Getter for the "JvmMemPoolCollectThreshold" variable. */
 public Long getJvmMemPoolCollectThreshold() throws SnmpStatusException {
   if (!pool.isCollectionUsageThresholdSupported()) return JvmMemoryImpl.Long0;
   final long val = pool.getCollectionUsageThreshold();
   if (val > -1) return new Long(val);
   else return JvmMemoryImpl.Long0;
 }