Package com.microstrategy.web.beans
Interface EnumSearchWildcards
-
public interface EnumSearchWildcards
This enumeration defines commonly encountered scenarios of appending wildcards for pattern matching.- Since:
- MicroStrategy Web 8.0.1
-
-
Field Summary
Fields Modifier and Type Field Description static int
WILDCARD_BEGINS
When applied to a pattern X, this shortcut suffixes the pattern with the match any field wildcard: X*.static int
WILDCARD_BEGINS_PHRASE
This is added for New Search.static int
WILDCARD_CONTAINS
When applied to a pattern X, this shortcut prefixes and suffixes the pattern with the match any field wildcard: *X*.static int
WILDCARD_CONTAINS_ANY
This is added for New Search.static int
WILDCARD_ENDS
When applied to a pattern X, this shortcut prefixes the pattern with the match any field wildcard: *X.static int
WILDCARD_EXACTLY
When applied to a pattern X, this shortcut wraps the pattern in quotes: "X".
-
-
-
Field Detail
-
WILDCARD_CONTAINS
static final int WILDCARD_CONTAINS
When applied to a pattern X, this shortcut prefixes and suffixes the pattern with the match any field wildcard: *X*.- See Also:
- Constant Field Values
-
WILDCARD_EXACTLY
static final int WILDCARD_EXACTLY
When applied to a pattern X, this shortcut wraps the pattern in quotes: "X". For New Search Engine, this shortcut won't add wildcard *; It will set SearchType 1 to SearchObject instead.- See Also:
- Constant Field Values
-
WILDCARD_BEGINS
static final int WILDCARD_BEGINS
When applied to a pattern X, this shortcut suffixes the pattern with the match any field wildcard: X*. For New Search Engine, this shortcut won't add wildcard *; It will set SearchType 2 to SearchObject instead.- See Also:
- Constant Field Values
-
WILDCARD_ENDS
static final int WILDCARD_ENDS
When applied to a pattern X, this shortcut prefixes the pattern with the match any field wildcard: *X.- See Also:
- Constant Field Values
-
WILDCARD_CONTAINS_ANY
static final int WILDCARD_CONTAINS_ANY
This is added for New Search. When applied to a pattern X, this shortcut won't add wildcard *; It will set SearchType 0 to SearchObject instead.- See Also:
- Constant Field Values
-
WILDCARD_BEGINS_PHRASE
static final int WILDCARD_BEGINS_PHRASE
This is added for New Search. When applied to a pattern X, this shortcut won't add wildcard *; It will set SearchType 3 to SearchObject instead.- See Also:
- Constant Field Values
-
-