Example usage for Java java.lang.management RuntimeMXBean fields, constructors, methods, implement or subclass
The text is from its open source code.
String | getBootClassPath() Returns the boot class path that is used by the bootstrap class loader to search for class files. |
Class> | getClass() Returns the runtime class of this Object . |
String | getClassPath() Returns the Java class path that is used by the system class loader to search for class files. |
java.util.List | getInputArguments() Returns the input arguments passed to the Java virtual machine which does not include the arguments to the main method. |
String | getLibraryPath() Returns the Java library path. |
String | getManagementSpecVersion() Returns the version of the specification for the management interface implemented by the running Java virtual machine. |
String | getName() Returns the name representing the running Java virtual machine. |
String | getSpecName() Returns the Java virtual machine specification name. |
String | getSpecVendor() Returns the Java virtual machine specification vendor. |
String | getSpecVersion() Returns the Java virtual machine specification version. |
long | getStartTime() Returns the start time of the Java virtual machine in milliseconds. |
java.util.Map | getSystemProperties() Returns a map of names and values of all system properties. |
long | getUptime() Returns the uptime of the Java virtual machine in milliseconds. |
String | getVmName() Returns the Java virtual machine implementation name. |
String | getVmVendor() Returns the Java virtual machine implementation vendor. |
String | getVmVersion() Returns the Java virtual machine implementation version. |
boolean | isBootClassPathSupported() Tests if the Java virtual machine supports the boot class path mechanism used by the bootstrap class loader to search for class files. |