public enum JavaVm extends Enum<JavaVm>
Modifier and Type | Field and Description |
---|---|
static JavaVm |
CURRENT_VM |
Modifier and Type | Method and Description |
---|---|
static JavaVm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JavaVm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JavaVm UNKNOWN
public static final JavaVm HOTSPOT
public static final JavaVm OPENJ9
public static final JavaVm CURRENT_VM
public static JavaVm[] values()
for (JavaVm c : JavaVm.values()) System.out.println(c);
public static JavaVm valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2022 Hazelcast, Inc.. All Rights Reserved.