-
Notifications
You must be signed in to change notification settings - Fork 531
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Mono.Android] Bind
java.time
and java.time.chrono
packages.
- Loading branch information
Showing
7 changed files
with
1,544 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#if ANDROID_26 | ||
using System; | ||
using Android.Runtime; | ||
using Java.Time.Chrono; | ||
|
||
namespace Java.Time.Chrono | ||
{ | ||
public abstract partial class AbstractChronology | ||
{ | ||
public int CompareTo (Java.Lang.Object obj) => CompareTo (obj.JavaCast<IChronology> ()); | ||
} | ||
} | ||
#endif | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#if ANDROID_26 | ||
using System; | ||
using Android.Runtime; | ||
using Java.Time.Chrono; | ||
|
||
namespace Java.Time | ||
{ | ||
public sealed partial class LocalDate | ||
{ | ||
public int CompareTo (Java.Lang.Object obj) => CompareTo (obj.JavaCast<IChronoLocalDate> ()); | ||
} | ||
} | ||
#endif | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#if ANDROID_26 | ||
using System; | ||
using Android.Runtime; | ||
using Java.Time.Chrono; | ||
|
||
namespace Java.Time | ||
{ | ||
public sealed partial class LocalDateTime | ||
{ | ||
public int CompareTo (Java.Lang.Object obj) => CompareTo (obj.JavaCast<IChronoLocalDateTime> ()); | ||
} | ||
} | ||
#endif | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#if ANDROID_26 | ||
using System; | ||
using Android.Runtime; | ||
using Java.Time.Chrono; | ||
|
||
namespace Java.Time | ||
{ | ||
public sealed partial class ZonedDateTime | ||
{ | ||
public int CompareTo (Java.Lang.Object obj) => (this as IChronoZonedDateTime).CompareTo (obj.JavaCast<IChronoZonedDateTime> ()); | ||
} | ||
} | ||
#endif | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1,418 changes: 1,418 additions & 0 deletions
1,418
src/Mono.Android/PublicAPI/API-34/PublicAPI.Unshipped.txt
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters