Class WhereClause
- java.lang.Object
-
- org.gcube.application.geoportalcommon.shared.WhereClause
-
- All Implemented Interfaces:
Serializable
public class WhereClause extends Object implements Serializable
The Class WhereClause.- Author:
- Francesco Mangiacrapa at ISTI-CNR francesco.mangiacrapa@isti.cnr.it Dec 15, 2021
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WhereClause()Instantiates a new where clause.WhereClause(SearchingFilter.LOGICAL_OP operator, Map<String,Object> searchInto)Instantiates a new where clause.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SearchingFilter.LOGICAL_OPgetOperator()Gets the operator.Map<String,Object>getSearchInto()Gets the search into.voidsetOperator(SearchingFilter.LOGICAL_OP operator)Sets the operator.voidsetSearchInto(Map<String,Object> searchInto)Sets the search into.StringtoString()To string.
-
-
-
Constructor Detail
-
WhereClause
public WhereClause()
Instantiates a new where clause.
-
WhereClause
public WhereClause(SearchingFilter.LOGICAL_OP operator, Map<String,Object> searchInto)
Instantiates a new where clause.- Parameters:
operator- the operatorsearchInto- the search into
-
-
Method Detail
-
getOperator
public SearchingFilter.LOGICAL_OP getOperator()
Gets the operator.- Returns:
- the operator
-
getSearchInto
public Map<String,Object> getSearchInto()
Gets the search into.- Returns:
- the search into
-
setOperator
public void setOperator(SearchingFilter.LOGICAL_OP operator)
Sets the operator.- Parameters:
operator- the new operator
-
setSearchInto
public void setSearchInto(Map<String,Object> searchInto)
Sets the search into.- Parameters:
searchInto- the search into
-
-