Record Class StorageResult.NoneResult<T>

java.lang.Object
java.lang.Record
com.inductiveautomation.historian.common.model.data.StorageResult.NoneResult<T>
Type Parameters:
T - The type of data involved in the operation.
All Implemented Interfaces:
StorageResult<T>
Enclosing interface:
StorageResult<T>

public static record StorageResult.NoneResult<T>() extends Record implements StorageResult<T>
Represents a storage operation that resulting in nothing occurring.
  • Constructor Details

    • NoneResult

      public NoneResult()
      Creates an instance of a NoneResult record class.
  • Method Details

    • qualityCode

      public QualityCode qualityCode()
      Description copied from interface: StorageResult
      Returns the quality code associated with this storage result.
      Specified by:
      qualityCode in interface StorageResult<T>
      Returns:
      the QualityCode indicating the quality of the storage operation
    • successfulData

      public List<T> successfulData()
      Description copied from interface: StorageResult
      Returns the list of successfully stored data.
      Specified by:
      successfulData in interface StorageResult<T>
      Returns:
      an unmodifiable List of successfully stored T
    • failedData

      public List<T> failedData()
      Description copied from interface: StorageResult
      Returns the list of data that failed to be stored.
      Specified by:
      failedData in interface StorageResult<T>
      Returns:
      an unmodifiable List of T that failed to be stored
    • error

      public Optional<Exception> error()
      Description copied from interface: StorageResult
      Returns an Optional containing the exception if one occurred during the storage operation.
      Specified by:
      error in interface StorageResult<T>
      Returns:
      an Optional of Exception, empty if no exception occurred
    • type

      public StorageResult.Type type()
      Description copied from interface: StorageResult
      Returns the exact type that this storage result represents.
      Specified by:
      type in interface StorageResult<T>
      Returns:
      the result StorageResult.Type
    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.