public enum V8GCType extends java.lang.Enum<V8GCType> implements IEnumBitset
| Enum Constant and Description |
|---|
GCTypeIncrementalMarking
GC type incremental marking.
|
GCTypeMarkSweepCompact
GC type mark sweep compact.
|
GCTypeProcessWeakCallbacks
GC type process weak callbacks.
|
GCTypeScavenge
GC type scavenge.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue()
Gets value.
|
static V8GCType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static V8GCType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfgetEnumSet, getEnumSet, getValuepublic static final V8GCType GCTypeScavenge
public static final V8GCType GCTypeMarkSweepCompact
public static final V8GCType GCTypeIncrementalMarking
public static final V8GCType GCTypeProcessWeakCallbacks
public static V8GCType[] values()
for (V8GCType c : V8GCType.values()) System.out.println(c);
public static V8GCType 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 nullpublic int getValue()
IEnumBitsetgetValue in interface IEnumBitset