Lenguaje

DateTimeFormatterBuilder.AppendZoneText Método

Definición

Sobrecargas

Nombre Description
AppendZoneText(TextStyle)

Anexa el nombre de la zona horaria, como "Hora británica de verano", al formateador.

AppendZoneText(TextStyle, ICollection<ZoneId>)

Anexa el nombre de la zona horaria, como "Hora británica de verano", al formateador.

AppendZoneText(TextStyle)

Anexa el nombre de la zona horaria, como "Hora británica de verano", al formateador.

[Android.Runtime.Register("appendZoneText", "(Ljava/time/format/TextStyle;)Ljava/time/format/DateTimeFormatterBuilder;", "", ApiSince=26)]
public Java.Time.Format.DateTimeFormatterBuilder? AppendZoneText(Java.Time.Format.TextStyle? textStyle);
[<Android.Runtime.Register("appendZoneText", "(Ljava/time/format/TextStyle;)Ljava/time/format/DateTimeFormatterBuilder;", "", ApiSince=26)>]
member this.AppendZoneText : Java.Time.Format.TextStyle -> Java.Time.Format.DateTimeFormatterBuilder

Parámetros

textStyle
TextStyle

estilo de texto que se va a usar, no null

Devoluciones

esto, para encadenar, no null

Atributos

Comentarios

Java documentación para java.time.format.DateTimeFormatterBuilder.appendZoneText(java.time.format.TextStyle).

Las partes de esta página son modificaciones basadas en el trabajo creado y compartido por el Android y se usan según los términos descritos en creative Creative Commons 2.5 Attribution License.

Se aplica a

AppendZoneText(TextStyle, ICollection<ZoneId>)

Anexa el nombre de la zona horaria, como "Hora británica de verano", al formateador.

[Android.Runtime.Register("appendZoneText", "(Ljava/time/format/TextStyle;Ljava/util/Set;)Ljava/time/format/DateTimeFormatterBuilder;", "", ApiSince=26)]
public Java.Time.Format.DateTimeFormatterBuilder? AppendZoneText(Java.Time.Format.TextStyle? textStyle, System.Collections.Generic.ICollection<Java.Time.ZoneId>? preferredZones);
[<Android.Runtime.Register("appendZoneText", "(Ljava/time/format/TextStyle;Ljava/util/Set;)Ljava/time/format/DateTimeFormatterBuilder;", "", ApiSince=26)>]
member this.AppendZoneText : Java.Time.Format.TextStyle * System.Collections.Generic.ICollection<Java.Time.ZoneId> -> Java.Time.Format.DateTimeFormatterBuilder

Parámetros

textStyle
TextStyle

estilo de texto que se va a usar, no null

preferredZones
ICollection<ZoneId>

el conjunto de identificadores de zona preferidos, no null

Devoluciones

esto, para encadenar, no null

Atributos

Comentarios

Las zonas preferidas se usan cuando un nombre de zona horaria es ambiguo.

Se aplica a