Package com.ibm.icu.text
Enum MessagePatternUtil.MessageContentsNode.Type
java.lang.Object
java.lang.Enum<MessagePatternUtil.MessageContentsNode.Type>
com.ibm.icu.text.MessagePatternUtil.MessageContentsNode.Type
- All Implemented Interfaces:
Serializable
,Comparable<MessagePatternUtil.MessageContentsNode.Type>
,java.lang.constant.Constable
- Enclosing class:
MessagePatternUtil.MessageContentsNode
public static enum MessagePatternUtil.MessageContentsNode.Type
extends Enum<MessagePatternUtil.MessageContentsNode.Type>
The type of a piece of MessageNode contents.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThis is an ArgNode representing a message argument (downcast and use specific methods).This Node represents a place in a plural argument's variant where the formatted (plural-offset) value is to be put.This is a TextNode containing literal text (downcast and call getText()). -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
TEXT
This is a TextNode containing literal text (downcast and call getText()). -
ARG
This is an ArgNode representing a message argument (downcast and use specific methods). -
REPLACE_NUMBER
This Node represents a place in a plural argument's variant where the formatted (plural-offset) value is to be put.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-