Enum CommandLineFlag
- java.lang.Object
-
- java.lang.Enum<CommandLineFlag>
-
- com.microsoft.gctoolkit.parser.jvm.CommandLineFlag
-
- All Implemented Interfaces:
Serializable,Comparable<CommandLineFlag>
public enum CommandLineFlag extends Enum<CommandLineFlag>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CommandLineFlagfromString(String name)static CommandLineFlaggetEnumFromString(String string)StringgetLabel()static CommandLineFlagvalueOf(String name)Returns the enum constant of this type with the specified name.static CommandLineFlag[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PrintGCApplicationStoppedTime
public static final CommandLineFlag PrintGCApplicationStoppedTime
-
PrintGCApplicationConcurrentTime
public static final CommandLineFlag PrintGCApplicationConcurrentTime
-
PrintGCTimeStamps
public static final CommandLineFlag PrintGCTimeStamps
-
PrintGCDetails
public static final CommandLineFlag PrintGCDetails
-
PrintGCCause
public static final CommandLineFlag PrintGCCause
-
PrintTenuringDistribution
public static final CommandLineFlag PrintTenuringDistribution
-
PrintAdaptiveSizePolicy
public static final CommandLineFlag PrintAdaptiveSizePolicy
-
CMSScavengeBeforeRemark
public static final CommandLineFlag CMSScavengeBeforeRemark
-
PrintHeapAtGC
public static final CommandLineFlag PrintHeapAtGC
-
PrintReferenceGC
public static final CommandLineFlag PrintReferenceGC
-
G1LogLevel
public static final CommandLineFlag G1LogLevel
-
G1PrintRegionLivenessInfo
public static final CommandLineFlag G1PrintRegionLivenessInfo
-
G1SummarizeRSetStats
public static final CommandLineFlag G1SummarizeRSetStats
-
PrintPromotionFailure
public static final CommandLineFlag PrintPromotionFailure
-
PrintFLSStatistics
public static final CommandLineFlag PrintFLSStatistics
-
-
Method Detail
-
values
public static CommandLineFlag[] 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 (CommandLineFlag c : CommandLineFlag.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CommandLineFlag 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
-
getEnumFromString
public static CommandLineFlag getEnumFromString(String string)
-
fromString
public static CommandLineFlag fromString(String name)
-
getLabel
public String getLabel()
-
-