IChronology.DateYearDay 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
DateYearDay(Int32, Int32) |
Obtains a local date in this chronology from the proleptic-year and day-of-year fields. |
DateYearDay(IEra, Int32, Int32) |
Obtains a local date in this chronology from the era, year-of-era and day-of-year fields. |
DateYearDay(Int32, Int32)
Obtains a local date in this chronology from the proleptic-year and day-of-year fields.
[Android.Runtime.Register("dateYearDay", "(II)Ljava/time/chrono/ChronoLocalDate;", "GetDateYearDay_IIHandler:Java.Time.Chrono.IChronologyInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", ApiSince=26)]
public Java.Time.Chrono.IChronoLocalDate? DateYearDay (int prolepticYear, int dayOfYear);
[<Android.Runtime.Register("dateYearDay", "(II)Ljava/time/chrono/ChronoLocalDate;", "GetDateYearDay_IIHandler:Java.Time.Chrono.IChronologyInvoker, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", ApiSince=26)>]
abstract member DateYearDay : int * int -> Java.Time.Chrono.IChronoLocalDate
Parameters
- prolepticYear
- Int32
the chronology proleptic-year
- dayOfYear
- Int32
the chronology day-of-year
Returns
the local date in this chronology, not null
- Attributes
Remarks
Obtains a local date in this chronology from the proleptic-year and day-of-year fields.
Java documentation for java.time.chrono.Chronology.dateYearDay(int, int)
.
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.
Applies to
DateYearDay(IEra, Int32, Int32)
Obtains a local date in this chronology from the era, year-of-era and day-of-year fields.
[Android.Runtime.Register("dateYearDay", "(Ljava/time/chrono/Era;II)Ljava/time/chrono/ChronoLocalDate;", "GetDateYearDay_Ljava_time_chrono_Era_IIHandler:Java.Time.Chrono.IChronology, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", ApiSince=26)]
public virtual Java.Time.Chrono.IChronoLocalDate? DateYearDay (Java.Time.Chrono.IEra? era, int yearOfEra, int dayOfYear);
[<Android.Runtime.Register("dateYearDay", "(Ljava/time/chrono/Era;II)Ljava/time/chrono/ChronoLocalDate;", "GetDateYearDay_Ljava_time_chrono_Era_IIHandler:Java.Time.Chrono.IChronology, Mono.Android, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null", ApiSince=26)>]
abstract member DateYearDay : Java.Time.Chrono.IEra * int * int -> Java.Time.Chrono.IChronoLocalDate
override this.DateYearDay : Java.Time.Chrono.IEra * int * int -> Java.Time.Chrono.IChronoLocalDate
Parameters
- era
- IEra
the era of the correct type for the chronology, not null
- yearOfEra
- Int32
the chronology year-of-era
- dayOfYear
- Int32
the chronology day-of-year
Returns
the local date in this chronology, not null
- Attributes
Remarks
Obtains a local date in this chronology from the era, year-of-era and day-of-year fields.
Java documentation for java.time.chrono.Chronology.dateYearDay(java.time.chrono.Era, int, int)
.
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.