Package org.antlr.v4.runtime.atn
Enum ATNDeserializer.UnicodeDeserializingMode
- java.lang.Object
-
- java.lang.Enum<ATNDeserializer.UnicodeDeserializingMode>
-
- org.antlr.v4.runtime.atn.ATNDeserializer.UnicodeDeserializingMode
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ATNDeserializer.UnicodeDeserializingMode>
- Enclosing class:
- ATNDeserializer
static enum ATNDeserializer.UnicodeDeserializingMode extends java.lang.Enum<ATNDeserializer.UnicodeDeserializingMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description UNICODE_BMP
UNICODE_SMP
-
Constructor Summary
Constructors Modifier Constructor Description private
UnicodeDeserializingMode()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ATNDeserializer.UnicodeDeserializingMode
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ATNDeserializer.UnicodeDeserializingMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNICODE_BMP
public static final ATNDeserializer.UnicodeDeserializingMode UNICODE_BMP
-
UNICODE_SMP
public static final ATNDeserializer.UnicodeDeserializingMode UNICODE_SMP
-
-
Method Detail
-
values
public static ATNDeserializer.UnicodeDeserializingMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ATNDeserializer.UnicodeDeserializingMode c : ATNDeserializer.UnicodeDeserializingMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ATNDeserializer.UnicodeDeserializingMode valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-