|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<MessagePattern.ApostropheMode>
com.ibm.icu.text.MessagePattern.ApostropheMode
public static enum 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 |
| Enum Constant Summary | |
|---|---|
DOUBLE_OPTIONAL
A literal apostrophe is represented by either a single or a double apostrophe pattern character. |
|
DOUBLE_REQUIRED
A literal apostrophe must be represented by a double apostrophe pattern character. |
|
| Method Summary | |
|---|---|
static MessagePattern.ApostropheMode |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static MessagePattern.ApostropheMode[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final MessagePattern.ApostropheMode DOUBLE_OPTIONAL
This is the default behavior starting with ICU 4.8.
public static final MessagePattern.ApostropheMode DOUBLE_REQUIRED
This is the behavior of ICU 4.6 and earlier, and of the JDK.
| Method Detail |
|---|
public static MessagePattern.ApostropheMode[] values()
for (MessagePattern.ApostropheMode c : MessagePattern.ApostropheMode.values()) System.out.println(c);
public static MessagePattern.ApostropheMode valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||