MessageFormat Constructors
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
MessageFormat(String) |
Constructs a MessageFormat for the default
|
MessageFormat(IntPtr, JniHandleOwnership) |
A constructor used when creating managed representations of JNI objects; called by the runtime. |
MessageFormat(String, Locale) |
Constructs a MessageFormat for the specified locale and pattern. |
MessageFormat(String)
Constructs a MessageFormat for the default
java.util.Locale.Category#FORMAT FORMAT
locale and the
specified pattern.
[Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")]
public MessageFormat (string? pattern);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")>]
new Java.Text.MessageFormat : string -> Java.Text.MessageFormat
Parameters
- pattern
- String
the pattern for this message format
- Attributes
Exceptions
if the pattern cannot be parsed.
Remarks
Constructs a MessageFormat for the default java.util.Locale.Category#FORMAT FORMAT
locale and the specified pattern. The constructor first sets the locale, then parses the pattern and creates a list of subformats for the format elements contained in it. Patterns and their interpretation are specified in the class description.
Java documentation for java.text.MessageFormat.MessageFormat(java.lang.String)
.
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
MessageFormat(IntPtr, JniHandleOwnership)
A constructor used when creating managed representations of JNI objects; called by the runtime.
protected MessageFormat (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.Text.MessageFormat : nativeint * Android.Runtime.JniHandleOwnership -> Java.Text.MessageFormat
Parameters
- transfer
- JniHandleOwnership
A JniHandleOwnershipindicating how to handle javaReference
Remarks
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
MessageFormat(String, Locale)
Constructs a MessageFormat for the specified locale and pattern.
[Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/util/Locale;)V", "")]
public MessageFormat (string? pattern, Java.Util.Locale? locale);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/util/Locale;)V", "")>]
new Java.Text.MessageFormat : string * Java.Util.Locale -> Java.Text.MessageFormat
Parameters
- pattern
- String
the pattern for this message format
- locale
- Locale
the locale for this message format
- Attributes
Exceptions
if the pattern cannot be parsed.
Remarks
Constructs a MessageFormat for the specified locale and pattern. The constructor first sets the locale, then parses the pattern and creates a list of subformats for the format elements contained in it. Patterns and their interpretation are specified in the class description.
Added in 1.4.
Java documentation for java.text.MessageFormat.MessageFormat(java.lang.String, java.util.Locale)
.
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.