Record Class StorageResult.ExceptionResult<T>
java.lang.Object
java.lang.Record
com.inductiveautomation.historian.common.model.data.StorageResult.ExceptionResult<T>
- Type Parameters:
T- The type of data involved in the operation- Record Components:
qualityCode- TheQualityCodeindicating the error state of the operationfailedData- TheListofTthat were being processed when the exception occurredexception- TheExceptionthat occurred during the operation
- All Implemented Interfaces:
StorageResult<T>
- Enclosing interface:
- StorageResult<T>
public static record StorageResult.ExceptionResult<T>(QualityCode qualityCode, List<T> failedData, Exception exception)
extends Record
implements StorageResult<T>
Represents a storage operation that resulted in an exception.
-
Nested Class Summary
Nested classes/interfaces inherited from interface com.inductiveautomation.historian.common.model.data.StorageResult
StorageResult.ExceptionResult<T>, StorageResult.FailureResult<T>, StorageResult.NoneResult<T>, StorageResult.PartialFailureResult<T>, StorageResult.SuccessResult<T>, StorageResult.Type -
Constructor Summary
ConstructorsConstructorDescriptionExceptionResult(QualityCode qualityCode, List<T> failedData, Exception exception) Creates an instance of aExceptionResultrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.error()Returns an Optional containing the exception if one occurred during the storage operation.Returns the value of theexceptionrecord component.Returns the value of thefailedDatarecord component.final inthashCode()Returns a hash code value for this object.Returns the value of thequalityCoderecord component.Returns the list of successfully stored data.final StringtoString()Returns a string representation of this record class.type()Returns the exact type that this storage result represents.
-
Constructor Details
-
ExceptionResult
Creates an instance of aExceptionResultrecord class.- Parameters:
qualityCode- the value for thequalityCoderecord componentfailedData- the value for thefailedDatarecord componentexception- the value for theexceptionrecord component
-
-
Method Details
-
successfulData
Description copied from interface:StorageResultReturns the list of successfully stored data.- Specified by:
successfulDatain interfaceStorageResult<T>- Returns:
- an unmodifiable
Listof successfully storedT
-
error
Description copied from interface:StorageResultReturns an Optional containing the exception if one occurred during the storage operation.- Specified by:
errorin interfaceStorageResult<T>- Returns:
- an
OptionalofException, empty if no exception occurred
-
type
Description copied from interface:StorageResultReturns the exact type that this storage result represents.- Specified by:
typein interfaceStorageResult<T>- Returns:
- the result
StorageResult.Type
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
qualityCode
Returns the value of thequalityCoderecord component.- Specified by:
qualityCodein interfaceStorageResult<T>- Returns:
- the value of the
qualityCoderecord component
-
failedData
Returns the value of thefailedDatarecord component.- Specified by:
failedDatain interfaceStorageResult<T>- Returns:
- the value of the
failedDatarecord component
-
exception
Returns the value of theexceptionrecord component.- Returns:
- the value of the
exceptionrecord component
-