LoadIssue

Overview

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

Represents an issue that occurred during workbook loading.

This class provides 14 methods for working with LoadIssue objects in Java programs. Available methods include: LoadIssue, getCellRef, getCode, getDataLossRisk, getMessage, getPartUri, getRepairApplied, getRowIndex, getSeverity, getSheetName, setCellRef, setPartUri, and 2 additional methods. All exported members are accessible to any Java application after installing the Aspose.Cells FOSS for Java package. Properties: cellRef, code, dataLossRisk, message, partUri, repairApplied, and 3 more.

Properties

NameTypeAccessDescription
codeStringReadReturns the code.
severityDiagnosticSeverityReadReturns the severity.
messageStringReadReturns the message.
repairAppliedbooleanReadReturns the repair applied.
dataLossRiskbooleanReadReturns the data loss risk.
partUriStringReadReturns the part uri.
sheetNameStringReadReturns the sheet name.
cellRefStringReadReturns the cell ref.
rowIndexIntegerReadReturns the row index.

Methods

SignatureDescription
LoadIssue(code: String, severity: DiagnosticSeverity, message: String, repairApplied: boolean, dataLossRisk: boolean)Initializes a new LoadIssue instance.
getCode()StringReturns the code.
getSeverity()DiagnosticSeverityReturns the severity.
getMessage()StringReturns the message.
getRepairApplied()booleanReturns the repair applied.
getDataLossRisk()booleanReturns the data loss risk.
getPartUri()StringReturns the part uri.
setPartUri(partUri: String)Sets the part uri.
getSheetName()StringReturns the sheet name.
setSheetName(sheetName: String)Sets the sheet name.
getCellRef()StringReturns the cell ref.
setCellRef(cellRef: String)Sets the cell ref.
getRowIndex()IntegerReturns the row index.
setRowIndex(rowIndex: Integer)Sets the row index.

See Also