AbstractChronology.CompareTo Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
CompareTo(Object) | |
CompareTo(IChronology) |
Compares this chronology to another chronology. |
CompareTo(Object)
public int CompareTo (Java.Lang.Object obj);
abstract member CompareTo : Java.Lang.Object -> int
override this.CompareTo : Java.Lang.Object -> int
Parameters
- obj
- Object
Returns
Implements
Applies to
CompareTo(IChronology)
Compares this chronology to another chronology.
[Android.Runtime.Register("compareTo", "(Ljava/time/chrono/Chronology;)I", "GetCompareTo_Ljava_time_chrono_Chronology_Handler", ApiSince=26)]
public virtual int CompareTo (Java.Time.Chrono.IChronology? other);
[<Android.Runtime.Register("compareTo", "(Ljava/time/chrono/Chronology;)I", "GetCompareTo_Ljava_time_chrono_Chronology_Handler", ApiSince=26)>]
abstract member CompareTo : Java.Time.Chrono.IChronology -> int
override this.CompareTo : Java.Time.Chrono.IChronology -> int
Parameters
- other
- IChronology
the other chronology to compare to, not null
Returns
the comparator value, negative if less, positive if greater
Implements
- Attributes
Remarks
Compares this chronology to another chronology.
The comparison order first by the chronology ID string, then by any additional information specific to the subclass. It is "consistent with equals", as defined by Comparable
.
Java documentation for java.time.chrono.AbstractChronology.compareTo(java.time.chrono.Chronology)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.