API Overview API Index Package Overview Direct link to this page
JDK 1.6
  java.lang.management. RuntimeMXBean View Source
Author(s)
Mandy Chung
Since
1.5
Version
1.14, 11/17/05
Serial
Hierarchy
 RuntimeMXBean
Subinterfaces
Description
public interface RuntimeMXBean
  The management interface for the runtime system of the Java virtual machine.
Methods
Hide/Show inherited methods
public String getBootClassPath ()
  Returns the boot class path that is used by the bootstrap class loader to search for class files.
public String getClassPath ()
  Returns the Java class path that is used by the system class loader to search for class files.
public List<String> getInputArguments ()
  Returns the input arguments passed to the Java virtual machine which does not include the arguments to the main method.
public String getLibraryPath ()
  Returns the Java library path.
public String getManagementSpecVersion ()
  Returns the version of the specification for the management interface implemented by the running Java virtual machine.
public String getName ()
  Returns the name representing the running Java virtual machine.
public String getSpecName ()
  Returns the Java virtual machine specification name.
public String getSpecVendor ()
  Returns the Java virtual machine specification vendor.
public String getSpecVersion ()
  Returns the Java virtual machine specification version.
public long getStartTime ()
  Returns the start time of the Java virtual machine in milliseconds.
public Map<String, String> getSystemProperties ()
  Returns a map of names and values of all system properties.
public long getUptime ()
  Returns the uptime of the Java virtual machine in milliseconds.
public String getVmName ()
  Returns the Java virtual machine implementation name.
public String getVmVendor ()
  Returns the Java virtual machine implementation vendor.
public String getVmVersion ()
  Returns the Java virtual machine implementation version.
public 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.
Fields
Hide/Show inherited fields
Generated By: JavaOnTracks Doclet 0.1.4     ©Thibaut Colar