Record Class CheckpointRepairResult.LocationResult

java.lang.Object
java.lang.Record
io.deephaven.configuration.CheckpointRepairResult.LocationResult
Record Components:
namespace - the namespace of the table that owns the location
tableName - the name of the table that owns the location
path - the absolute path of the location, or null when the whole table could not be inspected
issue - the problem that was found
status - what was done about the problem
message - a human-readable description of the problem and the action taken
Enclosing class:
CheckpointRepairResult

@ScriptApi public static record CheckpointRepairResult.LocationResult(@NotNull String namespace, @NotNull String tableName, @Nullable String path, @NotNull CheckpointRepairResult.Issue issue, @NotNull CheckpointRepairResult.Status status, @NotNull String message) extends Record
The problem found at a single table location, and what was done about it.
  • Constructor Details

    • LocationResult

      public LocationResult(@NotNull @NotNull String namespace, @NotNull @NotNull String tableName, @Nullable @Nullable String path, @NotNull @NotNull CheckpointRepairResult.Issue issue, @NotNull @NotNull CheckpointRepairResult.Status status, @NotNull @NotNull String message)
      Creates an instance of a LocationResult record class.
      Parameters:
      namespace - the value for the namespace record component
      tableName - the value for the tableName record component
      path - the value for the path record component
      issue - the value for the issue record component
      status - the value for the status record component
      message - the value for the message record component
  • Method Details

    • toString

      @NotNull public @NotNull 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. All components in this record class are compared with Objects::equals(Object,Object).
      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.
    • namespace

      @NotNull public @NotNull String namespace()
      Returns the value of the namespace record component.
      Returns:
      the value of the namespace record component
    • tableName

      @NotNull public @NotNull String tableName()
      Returns the value of the tableName record component.
      Returns:
      the value of the tableName record component
    • path

      @Nullable public @Nullable String path()
      Returns the value of the path record component.
      Returns:
      the value of the path record component
    • issue

      @NotNull public @NotNull CheckpointRepairResult.Issue issue()
      Returns the value of the issue record component.
      Returns:
      the value of the issue record component
    • status

      @NotNull public @NotNull CheckpointRepairResult.Status status()
      Returns the value of the status record component.
      Returns:
      the value of the status record component
    • message

      @NotNull public @NotNull String message()
      Returns the value of the message record component.
      Returns:
      the value of the message record component