Added in API level 24

Type

class Type
kotlin.Any
   ↳ kotlin.Enum<android.icu.text.MessagePattern.Part.Type>
   ↳ android.icu.text.MessagePattern.Part.Type

Part type constants.

Summary

Enum values

A numeric value, for example the offset or an explicit selector value in a PluralFormat style.

An integer value, for example the offset or an explicit selector value in a PluralFormat style.

End of an argument.

The argument name.

The argument number, provided by the value.

A selector substring in a "complex" argument style.

Start of an argument.

The argument style text.

The argument type.

Indicates that a syntax character needs to be inserted for auto-quoting.

End of a message pattern (main or nested).

Start of a message pattern (main or nested).

Indicates a syntactic (non-escaped) # symbol in a plural variant.

Indicates a substring of the pattern string which is to be skipped when formatting.

Public methods
Boolean

Indicates whether this part has a numeric value.

Enum values

ARG_DOUBLE

Added in API level 24
enum val ARG_DOUBLE : MessagePattern.Part.Type

A numeric value, for example the offset or an explicit selector value in a PluralFormat style. The part value is an index into an internal array of numeric values; use getNumericValue().

ARG_INT

Added in API level 24
enum val ARG_INT : MessagePattern.Part.Type

An integer value, for example the offset or an explicit selector value in a PluralFormat style. The part value is the integer value.

ARG_LIMIT

Added in API level 24
enum val ARG_LIMIT : MessagePattern.Part.Type

End of an argument. The length is 1 for the '}'. The value is the ordinal value of the ArgType. Use getArgType().

ARG_NAME

Added in API level 24
enum val ARG_NAME : MessagePattern.Part.Type

The argument name. The value is undefined and currently always 0.

ARG_NUMBER

Added in API level 24
enum val ARG_NUMBER : MessagePattern.Part.Type

The argument number, provided by the value.

ARG_SELECTOR

Added in API level 24
enum val ARG_SELECTOR : MessagePattern.Part.Type

A selector substring in a "complex" argument style. The value is undefined and currently always 0.

ARG_START

Added in API level 24
enum val ARG_START : MessagePattern.Part.Type

Start of an argument. The length is 1 for the '{'. The value is the ordinal value of the ArgType. Use getArgType().

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.

ARG_STYLE

Added in API level 24
enum val ARG_STYLE : MessagePattern.Part.Type

The argument style text. The value is undefined and currently always 0.

ARG_TYPE

Added in API level 24
enum val ARG_TYPE : MessagePattern.Part.Type

The argument type. The value is undefined and currently always 0.

INSERT_CHAR

Added in API level 24
enum val INSERT_CHAR : MessagePattern.Part.Type

Indicates that a syntax character needs to be inserted for auto-quoting. The length is 0. The value is the character code of the insertion character. (U+0027=APOSTROPHE)

MSG_LIMIT

Added in API level 24
enum val MSG_LIMIT : MessagePattern.Part.Type

End of a message pattern (main or nested). The length is 0 for the top-level message and the last sub-message of a choice argument, otherwise 1 for the '}' or (in a choice argument style) the '|'. The value indicates the nesting level, starting with 0 for the main message.

MSG_START

Added in API level 24
enum val MSG_START : MessagePattern.Part.Type

Start of a message pattern (main or nested). The length is 0 for the top-level message and for a choice argument sub-message, otherwise 1 for the '{'. The value indicates the nesting level, starting with 0 for the main message.

There is always a later MSG_LIMIT part.

REPLACE_NUMBER

Added in API level 24
enum val REPLACE_NUMBER : MessagePattern.Part.Type

Indicates a syntactic (non-escaped) # symbol in a plural variant. When formatting, replace this part's substring with the (value-offset) for the plural argument value. The value is undefined and currently always 0.

SKIP_SYNTAX

Added in API level 24
enum val SKIP_SYNTAX : MessagePattern.Part.Type

Indicates a substring of the pattern string which is to be skipped when formatting. For example, an apostrophe that begins or ends quoted text would be indicated with such a part. The value is undefined and currently always 0.

Public methods

hasNumericValue

Added in API level 24
fun hasNumericValue(): Boolean

Indicates whether this part has a numeric value. If so, then that numeric value can be retrieved via MessagePattern#getNumericValue(Part).

Return
Boolean true if this part has a numeric value.