Example usage for Java java.lang.management ManagementFactory fields, constructors, methods, implement or subclass
The text is from its open source code.
| String | MEMORY_MXBEAN_NAME String representation of the ObjectName for the MemoryMXBean . |
| String | OPERATING_SYSTEM_MXBEAN_NAME String representation of the ObjectName for the OperatingSystemMXBean . |
| String | RUNTIME_MXBEAN_NAME String representation of the ObjectName for the RuntimeMXBean . |
| String | THREAD_MXBEAN_NAME String representation of the ObjectName for the ThreadMXBean . |
| ClassLoadingMXBean | getClassLoadingMXBean() Returns the managed bean for the class loading system of the Java virtual machine. |
| List | getGarbageCollectorMXBeans() Returns a list of GarbageCollectorMXBean objects in the Java virtual machine. |
| MemoryMXBean | getMemoryMXBean() Returns the managed bean for the memory system of the Java virtual machine. |
| List | getMemoryPoolMXBeans() Returns a list of MemoryPoolMXBean objects in the Java virtual machine. |
| OperatingSystemMXBean | getOperatingSystemMXBean() Returns the managed bean for the operating system on which the Java virtual machine is running. |
| MBeanServer | getPlatformMBeanServer() Returns the platform javax.management.MBeanServer MBeanServer . |
| T | getPlatformMXBean(Class Returns the platform MXBean implementing the given mxbeanInterface which is specified to have one single instance in the Java virtual machine. |
| List | getPlatformMXBeans(Class Returns the list of platform MXBeans implementing the given mxbeanInterface in the Java virtual machine. |
| RuntimeMXBean | getRuntimeMXBean() Returns the managed bean for the runtime system of the Java virtual machine. |
| ThreadMXBean | getThreadMXBean() Returns the managed bean for the thread system of the Java virtual machine. |
| T | newPlatformMXBeanProxy(MBeanServerConnection connection, String mxbeanName, Class Returns a proxy for a platform MXBean interface of a given MXBean name that forwards its method calls through the given MBeanServerConnection . |