/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * This source file is part of SableVM classlib-stubs. * * * * See the file "LICENSE" for the copyright information and for * * the terms and conditions for copying, distribution and * * modification of this source file. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ package java.lang.management; import javax.management.openmbean.CompositeData; public class MemoryNotificationInfo extends Object { public static final String MEMORY_THRESHOLD_EXCEEDED = "java.management.memory.threshold.exceeded"; public static final String MEMORY_COLLECTION_THRESHOLD_EXCEEDED = "java.management.memory.collection.threshold.exceeded"; public MemoryNotificationInfo(String poolName, MemoryUsage usage, long count) { } native public String getPoolName(); native public MemoryUsage getUsage(); native public long getCount(); native public static MemoryNotificationInfo from(CompositeData cd); }