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