- java.lang.Object
-
- java.lang.Enum<ZGCPauseTypes>
-
- com.microsoft.gctoolkit.event.zgc.ZGCPauseTypes
-
- All Implemented Interfaces:
LabelledGCEventType,Serializable,Comparable<ZGCPauseTypes>
public enum ZGCPauseTypes extends Enum<ZGCPauseTypes> implements LabelledGCEventType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MARK_ENDMARK_STARTRELOCATE_START
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ZGCPauseTypesfromLabel(String label)StringgetLabel()static ZGCPauseTypesvalueOf(String name)Returns the enum constant of this type with the specified name.static ZGCPauseTypes[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MARK_START
public static final ZGCPauseTypes MARK_START
-
MARK_END
public static final ZGCPauseTypes MARK_END
-
RELOCATE_START
public static final ZGCPauseTypes RELOCATE_START
-
-
Method Detail
-
values
public static ZGCPauseTypes[] 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 (ZGCPauseTypes c : ZGCPauseTypes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ZGCPauseTypes 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 ZGCPauseTypes fromLabel(String label)
-
getLabel
public String getLabel()
- Specified by:
getLabelin interfaceLabelledGCEventType
-
-