YearMonth.Parse 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
| Name | Description |
|---|---|
| Parse(String, DateTimeFormatter) | |
| Parse(ICharSequence) |
Obtains an instance of YearMonth from a text string such as 2007-12. |
| Parse(String) | |
| Parse(ICharSequence, DateTimeFormatter) |
Obtains an instance of YearMonth from a text string using a specific formatter. |
Parse(String, DateTimeFormatter)
public static Java.Time.YearMonth? Parse(string? text, Java.Time.Format.DateTimeFormatter? formatter);
static member Parse : string * Java.Time.Format.DateTimeFormatter -> Java.Time.YearMonth
Parameters
- text
- String
- formatter
- DateTimeFormatter
Returns
Applies to
Parse(ICharSequence)
Obtains an instance of YearMonth from a text string such as 2007-12.
[Android.Runtime.Register("parse", "(Ljava/lang/CharSequence;)Ljava/time/YearMonth;", "", ApiSince=26)]
public static Java.Time.YearMonth? Parse(Java.Lang.ICharSequence? text);
[<Android.Runtime.Register("parse", "(Ljava/lang/CharSequence;)Ljava/time/YearMonth;", "", ApiSince=26)>]
static member Parse : Java.Lang.ICharSequence -> Java.Time.YearMonth
Parameters
- text
- ICharSequence
the text to parse such as "2007-12", not null
Returns
the parsed year-month, not null
- Attributes
Remarks
Obtains an instance of YearMonth from a text string such as 2007-12. The string must represent a valid year-month. The format must be uuuu-MM. Years outside the range 0000 to 9999 must be prefixed by the plus or minus symbol.
Java reference for java.time.YearMonth.parse.
Applies to
Parse(ICharSequence, DateTimeFormatter)
Obtains an instance of YearMonth from a text string using a specific formatter.
[Android.Runtime.Register("parse", "(Ljava/lang/CharSequence;Ljava/time/format/DateTimeFormatter;)Ljava/time/YearMonth;", "", ApiSince=26)]
public static Java.Time.YearMonth? Parse(Java.Lang.ICharSequence? text, Java.Time.Format.DateTimeFormatter? formatter);
[<Android.Runtime.Register("parse", "(Ljava/lang/CharSequence;Ljava/time/format/DateTimeFormatter;)Ljava/time/YearMonth;", "", ApiSince=26)>]
static member Parse : Java.Lang.ICharSequence * Java.Time.Format.DateTimeFormatter -> Java.Time.YearMonth
Parameters
- text
- ICharSequence
the text to parse, not null
- formatter
- DateTimeFormatter
the formatter to use, not null
Returns
the parsed year-month, not null
- Attributes
Remarks
To be added.
Java reference for java.time.YearMonth.parse.