public static enum JvmInfo.Name extends java.lang.Enum<JvmInfo.Name>
| Enum Constant and Description |
|---|
HOTSPOT
Oracle HotSpot.
|
J9
IBM J9.
|
OPENJDK
OpenJDK.
|
| Modifier and Type | Method and Description |
|---|---|
static JvmInfo.Name |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JvmInfo.Name[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JvmInfo.Name HOTSPOT
public static final JvmInfo.Name OPENJDK
public static final JvmInfo.Name J9
public static JvmInfo.Name[] values()
for (JvmInfo.Name c : JvmInfo.Name.values()) System.out.println(c);
public static JvmInfo.Name valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2004-2020 FEUP-LSTS and Neptus developers. All Rights Reserved.