Record Class DatabricksVersion

java.lang.Object
java.lang.Record
io.trino.tests.product.deltalake.util.DatabricksVersion
All Implemented Interfaces:
Comparable<DatabricksVersion>

public record DatabricksVersion(int majorVersion, int minorVersion) extends Record implements Comparable<DatabricksVersion>
  • Field Details

    • DATABRICKS_122_RUNTIME_VERSION

      public static final DatabricksVersion DATABRICKS_122_RUNTIME_VERSION
    • DATABRICKS_113_RUNTIME_VERSION

      public static final DatabricksVersion DATABRICKS_113_RUNTIME_VERSION
    • DATABRICKS_104_RUNTIME_VERSION

      public static final DatabricksVersion DATABRICKS_104_RUNTIME_VERSION
    • DATABRICKS_91_RUNTIME_VERSION

      public static final DatabricksVersion DATABRICKS_91_RUNTIME_VERSION
  • Constructor Details

    • DatabricksVersion

      public DatabricksVersion(int majorVersion, int minorVersion)
      Creates an instance of a DatabricksVersion record class.
      Parameters:
      majorVersion - the value for the majorVersion record component
      minorVersion - the value for the minorVersion record component
  • Method Details

    • isAtLeast

      public boolean isAtLeast(DatabricksVersion version)
    • isOlderThan

      public boolean isOlderThan(DatabricksVersion version)
    • compareTo

      public int compareTo(DatabricksVersion other)
      Specified by:
      compareTo in interface Comparable<DatabricksVersion>
    • parse

      public static DatabricksVersion parse(String versionString)
    • 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. All components in this record class are compared with '=='.
      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.
    • majorVersion

      public int majorVersion()
      Returns the value of the majorVersion record component.
      Returns:
      the value of the majorVersion record component
    • minorVersion

      public int minorVersion()
      Returns the value of the minorVersion record component.
      Returns:
      the value of the minorVersion record component