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