Class FilterCriteria
- java.lang.Object
-
- com.aspose.tasks.FilterCriteria
-
public class FilterCriteria extends Object
Defines the criteria that tasks or resources must meet to be displayed in MSP view.
-
-
Constructor Summary
Constructors Constructor Description FilterCriteria()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<FilterCriteria>
getCriteriaRows()
Gets the list of childFilterCriteria
rows.int
getField()
int
getOperation()
Gets the criterion established with FieldName, Test, and Value relates to other criteria in the filter.int
getTest()
Gets the type of comparison made between FieldName and Value that acts as selection criteria for the filter.Object[]
getValues()
Gets the object values to compare with the value of the field specified with FieldName.void
setField(int value)
void
setOperation(int value)
Sets the criterion established with FieldName, Test, and Value relates to other criteria in the filter.void
setTest(int value)
Sets the type of comparison made between FieldName and Value that acts as selection criteria for the filter.String
toString()
Returns string representation of the instance of theFilterCriteria
class.
-
-
-
Method Detail
-
getCriteriaRows
public final List<FilterCriteria> getCriteriaRows()
Gets the list of child
FilterCriteria
rows. If the filter contains more than one criterion row then the effect of an And operator is that the criteria for both rows must be met for the task or resource to be displayed as a result of this filter. The effect of an Or operator is that the criteria for one or the other row must be met.- Returns:
- the list of child
FilterCriteria
rows.
-
getField
public final int getField()
Gets a
Field
(getField()
/setField(int)
) to change.- Returns:
- a
Field
(getField()
/setField(int)
) to change.
-
setField
public final void setField(int value)
Sets a
Field
(getField()
/setField(int)
) to change.- Parameters:
value
- aField
(getField()
/setField(int)
) to change.
-
getOperation
public final int getOperation()
Gets the criterion established with FieldName, Test, and Value relates to other criteria in the filter.
- Returns:
- the criterion established with FieldName, Test, and Value relates to other criteria in the filter.
-
setOperation
public final void setOperation(int value)
Sets the criterion established with FieldName, Test, and Value relates to other criteria in the filter.
- Parameters:
value
- the criterion established with FieldName, Test, and Value relates to other criteria in the filter.
-
getTest
public final int getTest()
Gets the type of comparison made between FieldName and Value that acts as selection criteria for the filter.
FilterComparisonType
- Returns:
- the type of comparison made between FieldName and Value that acts as selection criteria for the filter.
-
setTest
public final void setTest(int value)
Sets the type of comparison made between FieldName and Value that acts as selection criteria for the filter.
FilterComparisonType
- Parameters:
value
- the type of comparison made between FieldName and Value that acts as selection criteria for the filter.
-
getValues
public final Object[] getValues()
Gets the object values to compare with the value of the field specified with FieldName.
- Returns:
- the object values to compare with the value of the field specified with FieldName.
-
toString
public String toString()
Returns string representation of the instance of the
FilterCriteria
class.
-
-