public static enum StringUtils.SearchMode extends java.lang.Enum<StringUtils.SearchMode>
Enum Constant and Description |
---|
ALLOW_BACKSLASH_ESCAPE |
SKIP_BETWEEN_MARKERS |
SKIP_BLOCK_COMMENTS |
SKIP_LINE_COMMENTS |
SKIP_WHITE_SPACE |
Modifier and Type | Method and Description |
---|---|
static StringUtils.SearchMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StringUtils.SearchMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StringUtils.SearchMode ALLOW_BACKSLASH_ESCAPE
public static final StringUtils.SearchMode SKIP_BETWEEN_MARKERS
public static final StringUtils.SearchMode SKIP_BLOCK_COMMENTS
public static final StringUtils.SearchMode SKIP_LINE_COMMENTS
public static final StringUtils.SearchMode SKIP_WHITE_SPACE
public static StringUtils.SearchMode[] values()
for (StringUtils.SearchMode c : StringUtils.SearchMode.values()) System.out.println(c);
public static StringUtils.SearchMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null