Package com.smartsheet.api.models
Class SheetFilterDetails
- java.lang.Object
-
- com.smartsheet.api.models.SheetFilterDetails
-
public class SheetFilterDetails extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description SheetFilterDetails()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<Criteria>getCriteria()Gets the list of criteriajava.lang.BooleangetIncludeParent()Gets flag indicating whether to include parent rows whose children are included in this filterSheetFilterOperatorgetOperator()Gets how to combine criteria in this filterSheetFilterDetailssetCriteria(java.util.List<Criteria> criteria)Sets the list of criteriaSheetFilterDetailssetIncludeParent(java.lang.Boolean includeParent)Sets flag indicating whether to include parent rows whose children are included in this filterSheetFilterDetailssetOperator(SheetFilterOperator operator)Sets how to combine criteria in this filter
-
-
-
Method Detail
-
getCriteria
public java.util.List<Criteria> getCriteria()
Gets the list of criteria- Returns:
- list of criteria
-
setCriteria
public SheetFilterDetails setCriteria(java.util.List<Criteria> criteria)
Sets the list of criteria- Parameters:
criteria- list of criteria
-
getIncludeParent
public java.lang.Boolean getIncludeParent()
Gets flag indicating whether to include parent rows whose children are included in this filter- Returns:
- flag indicating whether to include parent
-
setIncludeParent
public SheetFilterDetails setIncludeParent(java.lang.Boolean includeParent)
Sets flag indicating whether to include parent rows whose children are included in this filter- Parameters:
includeParent- flag indicating whether to include parent
-
getOperator
public SheetFilterOperator getOperator()
Gets how to combine criteria in this filter- Returns:
- the operator
-
setOperator
public SheetFilterDetails setOperator(SheetFilterOperator operator)
Sets how to combine criteria in this filter- Parameters:
operator- the operator
-
-