DiagnosticEntry

DiagnosticEntry

Overview

DiagnosticEntry is a class in Aspose.Cells FOSS for Java.

Represents a diagnostic entry with details about a problem or warning.

This class provides 10 methods for working with DiagnosticEntry objects in Java programs. Available methods include: getCode, getDataLossRisk, getMessage, getRepairApplied, getSeverity, setCode, setDataLossRisk, setMessage, setRepairApplied, setSeverity. All exported members are accessible to any Java application after installing the Aspose.Cells FOSS for Java package. Properties: code, dataLossRisk, message, repairApplied, severity.

Properties

NameTypeAccessDescription
codeStringReadReturns the code.
severityDiagnosticSeverityReadReturns the severity.
messageStringReadReturns the message.
repairAppliedbooleanReadReturns the repair applied.
dataLossRiskbooleanReadReturns the data loss risk.

Methods

SignatureDescription
getCode()StringReturns the code.
setCode(code: String)Sets the code.
getSeverity()DiagnosticSeverityReturns the severity.
setSeverity(severity: DiagnosticSeverity)Sets the severity.
getMessage()StringReturns the message.
setMessage(message: String)Sets the message.
getRepairApplied()booleanReturns the repair applied.
setRepairApplied(repairApplied: boolean)Sets the repair applied.
getDataLossRisk()booleanReturns the data loss risk.
setDataLossRisk(dataLossRisk: boolean)Sets the data loss risk.

See Also