Package io.deephaven.configuration
Record Class CheckpointControl.TableKey
java.lang.Object
java.lang.Record
io.deephaven.configuration.CheckpointControl.TableKey
- Record Components:
namespace- the namespace of the tabletableName- the name of the table
- Enclosing class:
- CheckpointControl
public static record CheckpointControl.TableKey(@NotNull String namespace, @NotNull String tableName)
extends Record
A single table selected by namespace and name.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.@NotNull StringReturns the value of thenamespacerecord component.@NotNull StringReturns the value of thetableNamerecord component.@NotNull StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Method Details
-
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). -
namespace
Returns the value of thenamespacerecord component.- Returns:
- the value of the
namespacerecord component
-
tableName
Returns the value of thetableNamerecord component.- Returns:
- the value of the
tableNamerecord component
-