close
The Wayback Machine - https://web.archive.org/web/20161009120616/https://developer.android.com/reference/android/icu/text/MessagePattern.ApostropheMode.html
Skip to content

Most visited

Recently visited

navigation

MessagePattern.ApostropheMode

public static final enum MessagePattern.ApostropheMode
extends Enum<MessagePattern.ApostropheMode>

java.lang.Object
   ↳ java.lang.Enum<android.icu.text.MessagePattern.ApostropheMode>
     ↳ android.icu.text.MessagePattern.ApostropheMode


Mode for when an apostrophe starts quoted literal text for MessageFormat output. The default is DOUBLE_OPTIONAL unless overridden via ICUConfig (/com/ibm/icu/ICUConfig.properties).

A pair of adjacent apostrophes always results in a single apostrophe in the output, even when the pair is between two single, text-quoting apostrophes.

The following table shows examples of desired MessageFormat.format() output with the pattern strings that yield that output.

Desired output DOUBLE_OPTIONAL DOUBLE_REQUIRED
I see {many} I see '{many}' (same)
I said {'Wow!'} I said '{''Wow!''}' (same)
I don't know I don't know OR
I don''t know
I don''t know

Summary

Enum values

MessagePattern.ApostropheMode  DOUBLE_OPTIONAL

A literal apostrophe is represented by either a single or a double apostrophe pattern character. 

MessagePattern.ApostropheMode  DOUBLE_REQUIRED

A literal apostrophe must be represented by a double apostrophe pattern character. 

Public methods

static MessagePattern.ApostropheMode valueOf(String name)
static final ApostropheMode[] values()

Inherited methods

BERJAYAFrom class java.lang.Enum
BERJAYAFrom class java.lang.Object
BERJAYAFrom interface java.lang.Comparable

Enum values

DOUBLE_OPTIONAL

Added in API level 24
MessagePattern.ApostropheMode DOUBLE_OPTIONAL

A literal apostrophe is represented by either a single or a double apostrophe pattern character. Within a MessageFormat pattern, a single apostrophe only starts quoted literal text if it immediately precedes a curly brace {}, or a pipe symbol | if inside a choice format, or a pound symbol # if inside a plural format.

This is the default behavior starting with ICU 4.8.

DOUBLE_REQUIRED

Added in API level 24
MessagePattern.ApostropheMode DOUBLE_REQUIRED

A literal apostrophe must be represented by a double apostrophe pattern character. A single apostrophe always starts quoted literal text.

This is the behavior of ICU 4.6 and earlier, and of MessageFormat.

Public methods

valueOf

Added in API level 24
MessagePattern.ApostropheMode valueOf (String name)

Parameters
name String
Returns
MessagePattern.ApostropheMode

values

Added in API level 24
ApostropheMode[] values ()

Returns
ApostropheMode[]
This site uses cookies to store your preferences for site-specific language and display options.

Hooray!

This class requires API level or higher

This doc is hidden because your selected API level for the documentation is . You can change the documentation API level with the selector above the left navigation.

For more information about specifying the API level your app requires, read Supporting Different Platform Versions.