public static enum RegexEscapedSymbol.RegexEscapedSymbolType extends Enum<RegexEscapedSymbol.RegexEscapedSymbolType>
| Enum Constant and Description |
|---|
CHARACTER |
CHARACTER_PROPERTY |
HEX |
OCTAL |
UNICODE |
| Modifier and Type | Method and Description |
|---|---|
static RegexEscapedSymbol.RegexEscapedSymbolType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RegexEscapedSymbol.RegexEscapedSymbolType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RegexEscapedSymbol.RegexEscapedSymbolType CHARACTER
public static final RegexEscapedSymbol.RegexEscapedSymbolType OCTAL
public static final RegexEscapedSymbol.RegexEscapedSymbolType UNICODE
public static final RegexEscapedSymbol.RegexEscapedSymbolType HEX
public static final RegexEscapedSymbol.RegexEscapedSymbolType CHARACTER_PROPERTY
public static RegexEscapedSymbol.RegexEscapedSymbolType[] values()
for (RegexEscapedSymbol.RegexEscapedSymbolType c : RegexEscapedSymbol.RegexEscapedSymbolType.values()) System.out.println(c);
public static RegexEscapedSymbol.RegexEscapedSymbolType 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 nullCopyright © 2021. All rights reserved.