Package | Description |
---|---|
org.openjdk.jmc.flightrecorder.rules |
This package contains interfaces and classes for working with Rules and RuleResults.
|
org.openjdk.jmc.flightrecorder.rules.report |
Modifier and Type | Field and Description |
---|---|
private Severity |
ResultBuilder.severity |
private Severity |
ResultBuilder.Result.severity |
private static Severity[] |
Severity.VALUES |
Modifier and Type | Method and Description |
---|---|
static Severity |
Severity.get(double score) |
Severity |
ResultBuilder.Result.getSeverity() |
Severity |
IResult.getSeverity()
Returns an enum of type
Severity describing the importance of this result. |
static Severity |
Severity.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Severity[] |
Severity.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
ResultBuilder |
ResultBuilder.setSeverity(Severity severity) |
Constructor and Description |
---|
Result(Severity severity,
IRule rule,
java.lang.String summary,
java.lang.String explanation,
java.lang.String solution,
java.util.Collection<IRecordingSetting> suggestedRecordingSettings,
java.util.Map<TypedResult<?>,java.lang.Object> resultMap,
java.util.Map<TypedResult<?>,java.util.Collection<?>> collectionResultMap,
java.util.Map<TypedPreference<?>,java.lang.Object> preferenceMap) |
Modifier and Type | Method and Description |
---|---|
static void |
JfrRulesReport.addReport(java.lang.String fileName,
Severity minSeverity,
boolean verbose,
org.w3c.dom.Element parent) |
static void |
JfrRulesReport.printReport(java.lang.String formatName,
Severity minSeverity,
boolean verbose,
boolean override,
java.lang.String... fileNames)
Prints an automated analysis report for the JFR files with the specified fileNames.
|