public enum SearchMode extends Enum<SearchMode>
StringInspector.| Enum Constant and Description |
|---|
ALLOW_BACKSLASH_ESCAPE
Allow backslash escapes.
|
SKIP_BETWEEN_MARKERS
Skip between markers (quoted text, quoted identifiers, text between parentheses).
|
SKIP_BLOCK_COMMENTS
Skip between block comments ("/* text...
|
SKIP_HINT_BLOCKS
Skip hint blocks ("/*+ text...
|
SKIP_LINE_COMMENTS
Skip line comments ("-- text...", "# text...").
|
SKIP_MYSQL_MARKERS
Skip MySQL specific markers ("/*![12345]" and "*\/") but not their contents.
|
SKIP_WHITE_SPACE
Skip white space.
|
VOID
Dummy search mode.
|
| Modifier and Type | Field and Description |
|---|---|
static Set<SearchMode> |
__BSE_COM_MYM_HNT_WS
Search mode: allow backslash escape, skip block comments, skip line comments, skip MySQL markers, skip hint blocks and skip white space.
|
static Set<SearchMode> |
__BSE_MRK_COM_MYM_HNT_WS
Search mode: allow backslash escape, skip between markers, skip block comments, skip line comments, skip MySQL markers, skip hint blocks and skip
white space.
|
static Set<SearchMode> |
__BSE_MRK_WS
Search mode: allow backslash escape, skip between markers and skip white space.
|
static Set<SearchMode> |
__COM_MYM_HNT_WS
Search mode: skip block comments, skip line comments, skip MySQL markers, skip hint blocks and skip white space.
|
static Set<SearchMode> |
__FULL
Full search mode: allow backslash escape, skip between markers, skip block comments, skip line comments, skip MySQL markers, skip hint blocks and skip
white space.
|
static Set<SearchMode> |
__MRK_COM_MYM_HNT_WS
Search mode: skip between markers, skip block comments, skip line comments, skip MySQL markers, skip hint blocks and skip white space.
|
static Set<SearchMode> |
__MRK_WS
Search mode: skip between markers and skip white space.
|
static Set<SearchMode> |
__NONE
Empty search mode.
|
| Modifier and Type | Method and Description |
|---|---|
static SearchMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SearchMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchMode ALLOW_BACKSLASH_ESCAPE
public static final SearchMode SKIP_BETWEEN_MARKERS
public static final SearchMode SKIP_BLOCK_COMMENTS
public static final SearchMode SKIP_LINE_COMMENTS
public static final SearchMode SKIP_MYSQL_MARKERS
public static final SearchMode SKIP_HINT_BLOCKS
public static final SearchMode SKIP_WHITE_SPACE
public static final SearchMode VOID
public static final Set<SearchMode> __FULL
public static final Set<SearchMode> __BSE_MRK_COM_MYM_HNT_WS
public static final Set<SearchMode> __MRK_COM_MYM_HNT_WS
public static final Set<SearchMode> __BSE_COM_MYM_HNT_WS
public static final Set<SearchMode> __COM_MYM_HNT_WS
public static final Set<SearchMode> __BSE_MRK_WS
public static final Set<SearchMode> __MRK_WS
public static final Set<SearchMode> __NONE
public static SearchMode[] values()
for (SearchMode c : SearchMode.values()) System.out.println(c);
public static SearchMode 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 null