Java java.lang.management ManagementFactory fields, constructors, methods, implement or subclass

Example usage for Java java.lang.management ManagementFactory fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for java.lang.management ManagementFactory.

The text is from its open source code.

Field

StringMEMORY_MXBEAN_NAME
String representation of the ObjectName for the MemoryMXBean .
StringOPERATING_SYSTEM_MXBEAN_NAME
String representation of the ObjectName for the OperatingSystemMXBean .
StringRUNTIME_MXBEAN_NAME
String representation of the ObjectName for the RuntimeMXBean .
StringTHREAD_MXBEAN_NAME
String representation of the ObjectName for the ThreadMXBean .

Method

ClassLoadingMXBeangetClassLoadingMXBean()
Returns the managed bean for the class loading system of the Java virtual machine.
ListgetGarbageCollectorMXBeans()
Returns a list of GarbageCollectorMXBean objects in the Java virtual machine.
MemoryMXBeangetMemoryMXBean()
Returns the managed bean for the memory system of the Java virtual machine.
ListgetMemoryPoolMXBeans()
Returns a list of MemoryPoolMXBean objects in the Java virtual machine.
OperatingSystemMXBeangetOperatingSystemMXBean()
Returns the managed bean for the operating system on which the Java virtual machine is running.
MBeanServergetPlatformMBeanServer()
Returns the platform javax.management.MBeanServer MBeanServer .
TgetPlatformMXBean(Class mxbeanInterface)
Returns the platform MXBean implementing the given mxbeanInterface which is specified to have one single instance in the Java virtual machine.
ListgetPlatformMXBeans(Class mxbeanInterface)
Returns the list of platform MXBeans implementing the given mxbeanInterface in the Java virtual machine.
RuntimeMXBeangetRuntimeMXBean()
Returns the managed bean for the runtime system of the Java virtual machine.
ThreadMXBeangetThreadMXBean()
Returns the managed bean for the thread system of the Java virtual machine.
TnewPlatformMXBeanProxy(MBeanServerConnection connection, String mxbeanName, Class mxbeanInterface)
Returns a proxy for a platform MXBean interface of a given MXBean name that forwards its method calls through the given MBeanServerConnection .