public static enum RegexSubexpression.SubexpressionType extends Enum<RegexSubexpression.SubexpressionType>
| Enum Constant and Description |
|---|
CHARACTER_CLASS |
ESCAPED_SYMBOL |
GROUP |
SYMBOL |
| Modifier and Type | Method and Description |
|---|---|
static RegexSubexpression.SubexpressionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RegexSubexpression.SubexpressionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RegexSubexpression.SubexpressionType SYMBOL
public static final RegexSubexpression.SubexpressionType ESCAPED_SYMBOL
public static final RegexSubexpression.SubexpressionType CHARACTER_CLASS
public static final RegexSubexpression.SubexpressionType GROUP
public static RegexSubexpression.SubexpressionType[] values()
for (RegexSubexpression.SubexpressionType c : RegexSubexpression.SubexpressionType.values()) System.out.println(c);
public static RegexSubexpression.SubexpressionType 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.