Class GraphicalIndicatorCriteriaValue
- java.lang.Object
-
- com.aspose.tasks.GraphicalIndicatorCriteriaValue
-
public final class GraphicalIndicatorCriteriaValue extends Object
Represents a value used in condition check of graphical indicators criteria.
-
-
Constructor Summary
Constructors Constructor Description GraphicalIndicatorCriteriaValue(boolean flagValue)Creates an instance of GraphicalIndicatorCriteriaValue class with constant flag (boolean) value.GraphicalIndicatorCriteriaValue(Duration durationValue)Creates an instance of GraphicalIndicatorCriteriaValue class with constant Duration value.GraphicalIndicatorCriteriaValue(String textValue)Creates an instance of GraphicalIndicatorCriteriaValue class with constant String value.GraphicalIndicatorCriteriaValue(BigDecimal value)Creates an instance of GraphicalIndicatorCriteriaValue class with constant BigDecimal value.GraphicalIndicatorCriteriaValue(Date dateValue)Creates an instance of GraphicalIndicatorCriteriaValue class with constant Date value.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GraphicalIndicatorCriteriaValuecreateFieldLink(int field)Creates an instance of GraphicalIndicatorCriteriaValue class representing the value of the specified MS Project's field.ObjectgetRawValue()Gets the underlying constant of Field value.booleanisFieldLink()Gets whether the current instance is a field link (represents a value of a field).StringtoString()Returns a string that represents the current object.
-
-
-
Constructor Detail
-
GraphicalIndicatorCriteriaValue
public GraphicalIndicatorCriteriaValue(BigDecimal value)
Creates an instance of GraphicalIndicatorCriteriaValue class with constant BigDecimal value.
- Parameters:
value- the BigDecimal value
-
GraphicalIndicatorCriteriaValue
public GraphicalIndicatorCriteriaValue(Date dateValue)
Creates an instance of GraphicalIndicatorCriteriaValue class with constant Date value.
- Parameters:
dateValue- the Date value
-
GraphicalIndicatorCriteriaValue
public GraphicalIndicatorCriteriaValue(String textValue)
Creates an instance of GraphicalIndicatorCriteriaValue class with constant String value.
- Parameters:
textValue- the String value
-
GraphicalIndicatorCriteriaValue
public GraphicalIndicatorCriteriaValue(Duration durationValue)
Creates an instance of GraphicalIndicatorCriteriaValue class with constant Duration value.
- Parameters:
durationValue- the Duration value
-
GraphicalIndicatorCriteriaValue
public GraphicalIndicatorCriteriaValue(boolean flagValue)
Creates an instance of GraphicalIndicatorCriteriaValue class with constant flag (boolean) value.
- Parameters:
flagValue- the flag (boolean) value
-
-
Method Detail
-
createFieldLink
public static GraphicalIndicatorCriteriaValue createFieldLink(int field)
Creates an instance of GraphicalIndicatorCriteriaValue class representing the value of the specified MS Project's field.
- Parameters:
field- the specified field- Returns:
- instance of GraphicalIndicatorCriteriaValue class representing the value of the specified field
-
getRawValue
public final Object getRawValue()
Gets the underlying constant of Field value.
- Returns:
- the underlying constant of Field value
-
isFieldLink
public final boolean isFieldLink()
Gets whether the current instance is a field link (represents a value of a field).
- Returns:
- whether the current instance is a field link (represents a value of a field)
-
-