- java.lang.Object
-
- java.lang.Enum<SupportedFlags>
-
- com.microsoft.gctoolkit.jvm.SupportedFlags
-
- All Implemented Interfaces:
Serializable,Comparable<SupportedFlags>
public enum SupportedFlags extends Enum<SupportedFlags>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SupportedFlagsvalueOf(String name)Returns the enum constant of this type with the specified name.static SupportedFlags[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
APPLICATION_STOPPED_TIME
public static final SupportedFlags APPLICATION_STOPPED_TIME
-
APPLICATION_CONCURRENT_TIME
public static final SupportedFlags APPLICATION_CONCURRENT_TIME
-
DEFNEW
public static final SupportedFlags DEFNEW
-
PARNEW
public static final SupportedFlags PARNEW
-
CMS
public static final SupportedFlags CMS
-
ICMS
public static final SupportedFlags ICMS
-
PARALLELGC
public static final SupportedFlags PARALLELGC
-
PARALLELOLDGC
public static final SupportedFlags PARALLELOLDGC
-
SERIAL
public static final SupportedFlags SERIAL
-
G1GC
public static final SupportedFlags G1GC
-
ZGC
public static final SupportedFlags ZGC
-
SHENANDOAH
public static final SupportedFlags SHENANDOAH
-
GC_DETAILS
public static final SupportedFlags GC_DETAILS
-
TENURING_DISTRIBUTION
public static final SupportedFlags TENURING_DISTRIBUTION
-
GC_CAUSE
public static final SupportedFlags GC_CAUSE
-
CMS_DEBUG_LEVEL_1
public static final SupportedFlags CMS_DEBUG_LEVEL_1
-
ADAPTIVE_SIZING
public static final SupportedFlags ADAPTIVE_SIZING
-
JDK70
public static final SupportedFlags JDK70
-
PRE_JDK70_40
public static final SupportedFlags PRE_JDK70_40
-
JDK80
public static final SupportedFlags JDK80
-
UNIFIED_LOGGING
public static final SupportedFlags UNIFIED_LOGGING
-
PRINT_HEAP_AT_GC
public static final SupportedFlags PRINT_HEAP_AT_GC
-
RSET_STATS
public static final SupportedFlags RSET_STATS
-
PRINT_REFERENCE_GC
public static final SupportedFlags PRINT_REFERENCE_GC
-
MAX_TENURING_THRESHOLD_VIOLATION
public static final SupportedFlags MAX_TENURING_THRESHOLD_VIOLATION
-
TLAB_DATA
public static final SupportedFlags TLAB_DATA
-
PRINT_PROMOTION_FAILURE
public static final SupportedFlags PRINT_PROMOTION_FAILURE
-
PRINT_FLS_STATISTICS
public static final SupportedFlags PRINT_FLS_STATISTICS
-
PRINT_CPU_TIMES
public static final SupportedFlags PRINT_CPU_TIMES
-
-
Method Detail
-
values
public static SupportedFlags[] 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 (SupportedFlags c : SupportedFlags.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SupportedFlags 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
-
-