Class Row<C0,​C1,​C2,​C3,​C4>

    • Field Detail

      • items

        protected Object[] items
      • frozen

        protected volatile boolean frozen
    • Constructor Detail

      • Row

        public Row()
    • Method Detail

      • of

        public static <C0,​C1> Row.R2<C0,​C1> of​(C0 p0,
                                                           C1 p1)
        Convenience Methods
      • of

        public static <C0,​C1,​C2> Row.R3<C0,​C1,​C2> of​(C0 p0,
                                                                             C1 p1,
                                                                             C2 p2)
      • of

        public static <C0,​C1,​C2,​C3> Row.R4<C0,​C1,​C2,​C3> of​(C0 p0,
                                                                                               C1 p1,
                                                                                               C2 p2,
                                                                                               C3 p3)
      • of

        public static <C0,​C1,​C2,​C3,​C4> Row.R5<C0,​C1,​C2,​C3,​C4> of​(C0 p0,
                                                                                                                 C1 p1,
                                                                                                                 C2 p2,
                                                                                                                 C3 p3,
                                                                                                                 C4 p4)
      • get0

        public C0 get0()
      • get1

        public C1 get1()
      • get2

        public C2 get2()
      • get3

        public C3 get3()
      • get4

        public C4 get4()
      • hashCode

        public int hashCode()
        Description copied from class: Object
        Returns an integer hash code for this object. By contract, any two objects for which Object.equals(java.lang.Object) returns true must return the same hash code value. This means that subclasses of Object usually override both methods or neither method.

        Note that hash values must not change over time unless information used in equals comparisons also changes.

        See Writing a correct hashCode method if you intend implementing your own hashCode method.

        Overrides:
        hashCode in class Object
        Returns:
        this object's hash code.
        See Also:
        Object.equals(java.lang.Object)
      • equals

        public boolean equals​(Object other)
        Description copied from class: Object
        Compares this instance with the specified object and indicates if they are equal. In order to be equal, o must represent the same object as this instance using a class-specific comparison. The general contract is that this comparison should be reflexive, symmetric, and transitive. Also, no object reference other than null is equal to null.

        The default implementation returns true only if this == o. See Writing a correct equals method if you intend implementing your own equals method.

        The general contract for the equals and Object.hashCode() methods is that if equals returns true for any two objects, then hashCode() must return the same value for these objects. This means that subclasses of Object usually override either both methods or neither of them.

        Overrides:
        equals in class Object
        Parameters:
        other - the object to compare this instance with.
        Returns:
        true if the specified object is equal to this Object; false otherwise.
        See Also:
        Object.hashCode()
      • compareTo

        public int compareTo​(Object other)
        Description copied from interface: Comparable
        Compares this object to the specified object to determine their relative order.
        Specified by:
        compareTo in interface Comparable<C0>
        Parameters:
        other - the object to compare to this instance.
        Returns:
        a negative integer if this instance is less than another; a positive integer if this instance is greater than another; 0 if this instance has the same order as another.
      • toString

        public String toString()
        Description copied from class: Object
        Returns a string containing a concise, human-readable description of this object. Subclasses are encouraged to override this method and provide an implementation that takes into account the object's type and data. The default implementation is equivalent to the following expression:
           getClass().getName() + '@' + Integer.toHexString(hashCode())

        See Writing a useful toString method if you intend implementing your own toString method.

        Overrides:
        toString in class Object
        Returns:
        a printable representation of this object.
      • isFrozen

        public boolean isFrozen()
        Description copied from interface: Freezable
        Determines whether the object has been frozen or not.
        Specified by:
        isFrozen in interface Freezable<C0>
      • freeze

        public Row<C0,​C1,​C2,​C3,​C4> freeze()
        Description copied from interface: Freezable
        Freezes the object.
        Specified by:
        freeze in interface Freezable<C0>
        Returns:
        the object itself.
      • clone

        public Object clone()
        Description copied from class: Object
        Creates and returns a copy of this Object. The default implementation returns a so-called "shallow" copy: It creates a new instance of the same class and then copies the field values (including object references) from this instance to the new instance. A "deep" copy, in contrast, would also recursively clone nested objects. A subclass that needs to implement this kind of cloning should call super.clone() to create the new instance and then create deep copies of the nested, mutable objects.
        Overrides:
        clone in class Object
        Returns:
        a copy of this object.
      • cloneAsThawed

        public Row<C0,​C1,​C2,​C3,​C4> cloneAsThawed()
        Description copied from interface: Freezable
        Provides for the clone operation. Any clone is initially unfrozen.
        Specified by:
        cloneAsThawed in interface Freezable<C0>