public interface MemoryManagerMXBean extends PlatformManagedObject
The management interface for a memory manager. A memory manager manages one or more memory pools of the Java virtual machine.
A Java virtual machine has one or more memory managers. An instance implementing this interface is an MXBean that can be obtained by calling the ManagementFactory.getMemoryManagerMXBeans()
method or from the platform
method. MBeanServer
The ObjectName
for uniquely identifying the MXBean for a memory manager within an MBeanServer is:
java.lang:type=MemoryManager,name=manager's nameIt can be obtained by calling the
PlatformManagedObject.getObjectName()
method.ManagementFactory.getPlatformMXBeans(Class)
, MemoryMXBean
, JMX Specification., Ways to Access MXBeans
String getName()
Returns the name representing this memory manager.
boolean isValid()
Tests if this memory manager is valid in the Java virtual machine. A memory manager becomes invalid once the Java virtual machine removes it from the memory system.
true
if the memory manager is valid in the Java virtual machine; false
otherwise.String[] getMemoryPoolNames()
Returns the name of memory pools that this memory manager manages.
String
objects, each is the name of a memory pool that this memory manager manages.
© 1993–2017, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.