Package com.ibm.icu.impl
Class Row<C0,C1,C2,C3,C4>
- java.lang.Object
-
- com.ibm.icu.impl.Row<C0,C1,C2,C3,C4>
-
-
Constructor Summary
Constructors Constructor Description Row()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Objectclone()Creates and returns a copy of thisObject.Row<C0,C1,C2,C3,C4>cloneAsThawed()Provides for the clone operation.intcompareTo(Object other)Compares this object to the specified object to determine their relative order.booleanequals(Object other)Compares this instance with the specified object and indicates if they are equal.Row<C0,C1,C2,C3,C4>freeze()Freezes the object.C0get0()C1get1()C2get2()C3get3()C4get4()inthashCode()Returns an integer hash code for this object.booleanisFrozen()Determines whether the object has been frozen or not.static <C0,C1>
Row.R2<C0,C1>of(C0 p0, C1 p1)Convenience Methodsstatic <C0,C1,C2>
Row.R3<C0,C1,C2>of(C0 p0, C1 p1, C2 p2)static <C0,C1,C2,C3>
Row.R4<C0,C1,C2,C3>of(C0 p0, C1 p1, C2 p2, C3 p3)static <C0,C1,C2,C3,C4>
Row.R5<C0,C1,C2,C3,C4>of(C0 p0, C1 p1, C2 p2, C3 p3, C4 p4)protected Row<C0,C1,C2,C3,C4>set(int i, Object item)Row<C0,C1,C2,C3,C4>set0(C0 item)Row<C0,C1,C2,C3,C4>set1(C1 item)Row<C0,C1,C2,C3,C4>set2(C2 item)Row<C0,C1,C2,C3,C4>set3(C3 item)Row<C0,C1,C2,C3,C4>set4(C4 item)StringtoString()Returns a string containing a concise, human-readable description of this object.
-
-
-
Field Detail
-
items
protected Object[] items
-
frozen
protected volatile boolean frozen
-
-
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:ObjectReturns an integer hash code for this object. By contract, any two objects for whichObject.equals(java.lang.Object)returnstruemust return the same hash code value. This means that subclasses ofObjectusually 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
hashCodemethod if you intend implementing your ownhashCodemethod.- Overrides:
hashCodein classObject- Returns:
- this object's hash code.
- See Also:
Object.equals(java.lang.Object)
-
equals
public boolean equals(Object other)
Description copied from class:ObjectCompares this instance with the specified object and indicates if they are equal. In order to be equal,omust 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
trueonly ifthis == o. See Writing a correctequalsmethod if you intend implementing your ownequalsmethod.The general contract for the
equalsandObject.hashCode()methods is that ifequalsreturnstruefor any two objects, thenhashCode()must return the same value for these objects. This means that subclasses ofObjectusually override either both methods or neither of them.- Overrides:
equalsin classObject- Parameters:
other- the object to compare this instance with.- Returns:
trueif the specified object is equal to thisObject;falseotherwise.- See Also:
Object.hashCode()
-
compareTo
public int compareTo(Object other)
Description copied from interface:ComparableCompares this object to the specified object to determine their relative order.- Specified by:
compareToin interfaceComparable<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 thananother; 0 if this instance has the same order asanother.
-
toString
public String toString()
Description copied from class:ObjectReturns 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
toStringmethod if you intend implementing your owntoStringmethod.
-
isFrozen
public boolean isFrozen()
Description copied from interface:FreezableDetermines whether the object has been frozen or not.
-
freeze
public Row<C0,C1,C2,C3,C4> freeze()
Description copied from interface:FreezableFreezes the object.
-
clone
public Object clone()
Description copied from class:ObjectCreates and returns a copy of thisObject. 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 callsuper.clone()to create the new instance and then create deep copies of the nested, mutable objects.
-
-