Interface SearchService
-
public interface SearchServiceGeneric search service
Copyright 2010 (C) by Martin Ganserer
- Version:
- 1.0.0
- Author:
- Martin Ganserer
-
-
Field Summary
Fields Modifier and Type Field Description static StringOPERATOR_BETWEENstatic StringOPERATOR_EQUALstatic StringOPERATOR_GREATERstatic StringOPERATOR_GREATER_OR_EQUALstatic StringOPERATOR_INstatic StringOPERATOR_IS_NOT_NULLstatic StringOPERATOR_IS_NULLstatic StringOPERATOR_LIKEstatic StringOPERATOR_NOT_INstatic StringOPERATOR_NOT_LIKEstatic StringOPERATOR_SMALLERstatic StringOPERATOR_SMALLER_OR_EQUALstatic StringTOKEN_DELIMITER_BETWEENstatic StringTOKEN_DELIMITER_IN
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<String>getListOfValues(String command, String prefix)Search for values that begin with the specified prefix
-
-
-
Field Detail
-
OPERATOR_IN
static final String OPERATOR_IN
- See Also:
- Constant Field Values
-
OPERATOR_NOT_IN
static final String OPERATOR_NOT_IN
- See Also:
- Constant Field Values
-
OPERATOR_BETWEEN
static final String OPERATOR_BETWEEN
- See Also:
- Constant Field Values
-
OPERATOR_IS_NULL
static final String OPERATOR_IS_NULL
- See Also:
- Constant Field Values
-
OPERATOR_IS_NOT_NULL
static final String OPERATOR_IS_NOT_NULL
- See Also:
- Constant Field Values
-
OPERATOR_LIKE
static final String OPERATOR_LIKE
- See Also:
- Constant Field Values
-
OPERATOR_NOT_LIKE
static final String OPERATOR_NOT_LIKE
- See Also:
- Constant Field Values
-
OPERATOR_EQUAL
static final String OPERATOR_EQUAL
- See Also:
- Constant Field Values
-
OPERATOR_GREATER
static final String OPERATOR_GREATER
- See Also:
- Constant Field Values
-
OPERATOR_SMALLER
static final String OPERATOR_SMALLER
- See Also:
- Constant Field Values
-
OPERATOR_GREATER_OR_EQUAL
static final String OPERATOR_GREATER_OR_EQUAL
- See Also:
- Constant Field Values
-
OPERATOR_SMALLER_OR_EQUAL
static final String OPERATOR_SMALLER_OR_EQUAL
- See Also:
- Constant Field Values
-
TOKEN_DELIMITER_IN
static final String TOKEN_DELIMITER_IN
- See Also:
- Constant Field Values
-
TOKEN_DELIMITER_BETWEEN
static final String TOKEN_DELIMITER_BETWEEN
- See Also:
- Constant Field Values
-
-
Method Detail
-
getListOfValues
Collection<String> getListOfValues(String command, String prefix)
Search for values that begin with the specified prefix- Parameters:
command-prefix-- Returns:
- the result list
-
-