public static enum MessagePattern.Part.Type extends Enum<MessagePattern.Part.Type>
Enum Constant and Description |
---|
ARG_DOUBLE
A numeric value, for example the offset or an explicit selector value
in a PluralFormat style.
|
ARG_INT
An integer value, for example the offset or an explicit selector value
in a PluralFormat style.
|
ARG_LIMIT
End of an argument.
|
ARG_NAME
The argument name.
|
ARG_NUMBER
The argument number, provided by the value.
|
ARG_SELECTOR
A selector substring in a "complex" argument style.
|
ARG_START
Start of an argument.
|
ARG_STYLE
The argument style text.
|
ARG_TYPE
The argument type.
|
INSERT_CHAR
Indicates that a syntax character needs to be inserted for auto-quoting.
|
MSG_LIMIT
End of a message pattern (main or nested).
|
MSG_START
Start of a message pattern (main or nested).
|
REPLACE_NUMBER
Indicates a syntactic (non-escaped) # symbol in a plural variant.
|
SKIP_SYNTAX
Indicates a substring of the pattern string which is to be skipped when formatting.
|
Modifier and Type | Method and Description |
---|---|
boolean |
hasNumericValue()
Indicates whether this part has a numeric value.
|
static MessagePattern.Part.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MessagePattern.Part.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MessagePattern.Part.Type MSG_START
There is always a later MSG_LIMIT part.
public static final MessagePattern.Part.Type MSG_LIMIT
public static final MessagePattern.Part.Type SKIP_SYNTAX
public static final MessagePattern.Part.Type INSERT_CHAR
public static final MessagePattern.Part.Type REPLACE_NUMBER
public static final MessagePattern.Part.Type ARG_START
This part is followed by either an ARG_NUMBER or ARG_NAME, followed by optional argument sub-parts (see ArgType constants) and finally an ARG_LIMIT part.
public static final MessagePattern.Part.Type ARG_LIMIT
public static final MessagePattern.Part.Type ARG_NUMBER
public static final MessagePattern.Part.Type ARG_NAME
public static final MessagePattern.Part.Type ARG_TYPE
public static final MessagePattern.Part.Type ARG_STYLE
public static final MessagePattern.Part.Type ARG_SELECTOR
public static final MessagePattern.Part.Type ARG_INT
public static final MessagePattern.Part.Type ARG_DOUBLE
public static MessagePattern.Part.Type[] values()
for (MessagePattern.Part.Type c : MessagePattern.Part.Type.values()) System.out.println(c);
public static MessagePattern.Part.Type valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic boolean hasNumericValue()
MessagePattern.getNumericValue(Part)
.Copyright © 2016 Unicode, Inc. and others.