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