MonthDay.Parse Method

Definition

Overloads

Name Description
Parse(String)
Parse(ICharSequence)

Obtains an instance of MonthDay from a text string such as --12-03.

Parse(ICharSequence, DateTimeFormatter)

Obtains an instance of MonthDay from a text string using a specific formatter.

Parse(String, DateTimeFormatter)

Parse(String)

public static Java.Time.MonthDay? Parse(string? text);
static member Parse : string -> Java.Time.MonthDay

Parameters

text
String

Returns

Applies to

Parse(ICharSequence)

Obtains an instance of MonthDay from a text string such as --12-03.

[Android.Runtime.Register("parse", "(Ljava/lang/CharSequence;)Ljava/time/MonthDay;", "", ApiSince=26)]
public static Java.Time.MonthDay? Parse(Java.Lang.ICharSequence? text);
[<Android.Runtime.Register("parse", "(Ljava/lang/CharSequence;)Ljava/time/MonthDay;", "", ApiSince=26)>]
static member Parse : Java.Lang.ICharSequence -> Java.Time.MonthDay

Parameters

text
ICharSequence

the text to parse such as "--12-03", not null

Returns

the parsed month-day, not null

Attributes

Remarks

Obtains an instance of MonthDay from a text string such as --12-03. The string must represent a valid month-day. The format is --MM-dd.

Java reference for java.time.MonthDay.parse.

Applies to

Parse(ICharSequence, DateTimeFormatter)

Obtains an instance of MonthDay from a text string using a specific formatter.

[Android.Runtime.Register("parse", "(Ljava/lang/CharSequence;Ljava/time/format/DateTimeFormatter;)Ljava/time/MonthDay;", "", ApiSince=26)]
public static Java.Time.MonthDay? Parse(Java.Lang.ICharSequence? text, Java.Time.Format.DateTimeFormatter? formatter);
[<Android.Runtime.Register("parse", "(Ljava/lang/CharSequence;Ljava/time/format/DateTimeFormatter;)Ljava/time/MonthDay;", "", ApiSince=26)>]
static member Parse : Java.Lang.ICharSequence * Java.Time.Format.DateTimeFormatter -> Java.Time.MonthDay

Parameters

text
ICharSequence

the text to parse, not null

formatter
DateTimeFormatter

the formatter to use, not null

Returns

the parsed month-day, not null

Attributes

Remarks

To be added.

Java reference for java.time.MonthDay.parse.

Applies to

Parse(String, DateTimeFormatter)

public static Java.Time.MonthDay? Parse(string? text, Java.Time.Format.DateTimeFormatter? formatter);
static member Parse : string * Java.Time.Format.DateTimeFormatter -> Java.Time.MonthDay

Parameters

text
String
formatter
DateTimeFormatter

Returns

Applies to