Module com.microsoft.gctoolkit.api
Enum ZGCConcurrentPhases
- java.lang.Object
-
- java.lang.Enum<ZGCConcurrentPhases>
-
- com.microsoft.gctoolkit.event.zgc.ZGCConcurrentPhases
-
- All Implemented Interfaces:
LabelledGCEventType,Serializable,Comparable<ZGCConcurrentPhases>
public enum ZGCConcurrentPhases extends Enum<ZGCConcurrentPhases> implements LabelledGCEventType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MARKREFERENCE_PROCESSINGRELOCATERELOCATION_SET_SELECTION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ZGCConcurrentPhasesfromLabel(String label)StringgetLabel()static ZGCConcurrentPhasesvalueOf(String name)Returns the enum constant of this type with the specified name.static ZGCConcurrentPhases[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MARK
public static final ZGCConcurrentPhases MARK
-
REFERENCE_PROCESSING
public static final ZGCConcurrentPhases REFERENCE_PROCESSING
-
RELOCATION_SET_SELECTION
public static final ZGCConcurrentPhases RELOCATION_SET_SELECTION
-
RELOCATE
public static final ZGCConcurrentPhases RELOCATE
-
-
Method Detail
-
values
public static ZGCConcurrentPhases[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ZGCConcurrentPhases c : ZGCConcurrentPhases.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ZGCConcurrentPhases valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
fromLabel
public static ZGCConcurrentPhases fromLabel(String label)
-
getLabel
public String getLabel()
- Specified by:
getLabelin interfaceLabelledGCEventType
-
-