public static enum RegexGroup.RegexGroupType extends Enum<RegexGroup.RegexGroupType>
| Enum Constant and Description |
|---|
NEGLOOKAHEAD |
NEGLOOKBEHIND |
NONCAPTURING |
NORMAL |
POSLOOKAHEAD |
POSLOOKBEHIND |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static RegexGroup.RegexGroupType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RegexGroup.RegexGroupType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RegexGroup.RegexGroupType NORMAL
public static final RegexGroup.RegexGroupType NONCAPTURING
public static final RegexGroup.RegexGroupType POSLOOKAHEAD
public static final RegexGroup.RegexGroupType POSLOOKBEHIND
public static final RegexGroup.RegexGroupType NEGLOOKAHEAD
public static final RegexGroup.RegexGroupType NEGLOOKBEHIND
public static RegexGroup.RegexGroupType[] values()
for (RegexGroup.RegexGroupType c : RegexGroup.RegexGroupType.values()) System.out.println(c);
public static RegexGroup.RegexGroupType 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 nullpublic String toString()
toString in class Enum<RegexGroup.RegexGroupType>Copyright © 2021. All rights reserved.