Enum Class TelemetryKey
- All Implemented Interfaces:
Serializable,Comparable<TelemetryKey>,Constable
Telemetry keys used by the Java analyzer.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final recordstatic final recordstatic final recordstatic interfaceNested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final TelemetryKey.JavaAnalysisKeysstatic final TelemetryKey.JavaAnalysisKeysstatic final TelemetryKey.JavaAnalysisKeys -
Method Summary
Modifier and TypeMethodDescriptionkey()static TelemetryKeyReturns the enum constant of this class with the specified name.static TelemetryKey[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
JAVA_LANGUAGE_VERSION
-
JAVA_SCANNER_APP
-
JAVA_IS_AUTOSCAN
-
JAVA_ANALYSIS_MAIN_SUCCESS_SIZE_CHARS
-
JAVA_ANALYSIS_MAIN_SUCCESS_TIME_MS
-
JAVA_ANALYSIS_MAIN_SUCCESS_TYPE_ERROR_COUNT
-
JAVA_ANALYSIS_MAIN_PARSE_ERRORS_SIZE_CHARS
-
JAVA_ANALYSIS_MAIN_PARSE_ERRORS_TIME_MS
-
JAVA_ANALYSIS_MAIN_EXCEPTIONS_SIZE_CHARS
-
JAVA_ANALYSIS_MAIN_EXCEPTIONS_TIME_MS
-
JAVA_ANALYSIS_TEST_SUCCESS_SIZE_CHARS
-
JAVA_ANALYSIS_TEST_SUCCESS_TIME_MS
-
JAVA_ANALYSIS_TEST_SUCCESS_TYPE_ERROR_COUNT
-
JAVA_ANALYSIS_TEST_PARSE_ERRORS_SIZE_CHARS
-
JAVA_ANALYSIS_TEST_PARSE_ERRORS_TIME_MS
-
JAVA_ANALYSIS_TEST_EXCEPTIONS_SIZE_CHARS
-
JAVA_ANALYSIS_TEST_EXCEPTIONS_TIME_MS
-
JAVA_ANALYSIS_GENERATED_SUCCESS_SIZE_CHARS
-
JAVA_ANALYSIS_GENERATED_SUCCESS_TIME_MS
-
JAVA_ANALYSIS_GENERATED_SUCCESS_TYPE_ERROR_COUNT
-
JAVA_ANALYSIS_GENERATED_PARSE_ERRORS_SIZE_CHARS
-
JAVA_ANALYSIS_GENERATED_PARSE_ERRORS_TIME_MS
-
JAVA_ANALYSIS_GENERATED_EXCEPTIONS_SIZE_CHARS
-
JAVA_ANALYSIS_GENERATED_EXCEPTIONS_TIME_MS
-
JAVA_MODULE_COUNT
-
JAVA_DEPENDENCY_LOMBOK
-
JAVA_DEPENDENCY_SPRING_BOOT
-
JAVA_DEPENDENCY_SPRING_WEB
-
-
Field Details
-
JAVA_ANALYSIS_MAIN
-
JAVA_ANALYSIS_TEST
-
JAVA_ANALYSIS_GENERATED
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
key
-