Enum Class PythonREMode
- All Implemented Interfaces:
Serializable,Comparable<PythonREMode>,Constable
The enumeration of different flavors of Python regular expressions.
In Python, the standard regular expression engine behaves differently based on whether the
pattern is a 'str' (string) or a 'bytes' (immutable byte buffer) object. Since all regexes are
represented as Strings in TRegex, we cannot dispatch on the type of the pattern. Instead,
we dispatch on values of this enumeration.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic PythonREModefromEncoding(Encodings.Encoding encoding) static PythonREModeReturns the enum constant of this class with the specified name.static PythonREMode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
Str
String-based patterns, where the Python regular expression was given as a 'str' object. -
Bytes
Bytes-based (binary) patterns, where the Python regular expression was given as a 'bytes' object.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
fromEncoding
-