Class AssignmentBaseline
- java.lang.Object
-
- com.aspose.tasks.Baseline
-
- com.aspose.tasks.AssignmentBaseline
-
- All Implemented Interfaces:
com.aspose.ms.System.IEquatable<Baseline>
,Comparable<Baseline>
public class AssignmentBaseline extends Baseline
Represents Baseline of a resource assignment.
-
-
Constructor Summary
Constructors Constructor Description AssignmentBaseline()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(AssignmentBaseline other)
IComparable interface implementation.boolean
equals(AssignmentBaseline other)
Returns a value indicating whether this instance is equal to the specified AssignmentBaseline object.boolean
equals(Object obj)
Returns a value indicating whether this instance is equal to a specified object.Date
getFinish()
Gets the scheduled finish date of the resource assignment when the baseline was saved.Date
getStart()
Gets the scheduled start date of the resource assignment when the baseline was saved.TimephasedDataCollection
getTimephasedData()
Gets theTimephasedDataCollection
instance for this object.int
hashCode()
Returns a hash code value for this AssignmentBaseline.void
setFinish(Date value)
Sets the scheduled finish date of the resource assignment when the baseline was saved.void
setStart(Date value)
Sets the scheduled start date of the resource assignment when the baseline was saved.void
setTimephasedData(TimephasedDataCollection value)
Sets theTimephasedDataCollection
instance for this object.-
Methods inherited from class com.aspose.tasks.Baseline
compareTo, equals, getBaselineNumber, getBcwp, getBcws, getCost, getWork, op_Equality, op_GreaterThan, op_GreaterThanOrEqual, op_Inequality, op_LessThan, op_LessThanOrEqual, setBaselineNumber, setBcwp, setBcws, setCost, setWork
-
-
-
-
Method Detail
-
compareTo
public final int compareTo(AssignmentBaseline other)
IComparable interface implementation. Compares this instance to the specified Baseline object.
- Parameters:
other
- the specified Baseline object to compare this instance to.- Returns:
- returns -1 if this instance is less than the specified object, 1 if this instance is greater than the specified object; otherwise returns 0
-
equals
public boolean equals(Object obj)
Returns a value indicating whether this instance is equal to a specified object.
-
equals
public final boolean equals(AssignmentBaseline other)
Returns a value indicating whether this instance is equal to the specified AssignmentBaseline object.
- Parameters:
other
- the specified AssignmentBaseline object to compare with this instance.- Returns:
- returns true if this instance is equal to the specified AssignmentBaseline object; otherwise, false.
-
getFinish
public final Date getFinish()
Gets the scheduled finish date of the resource assignment when the baseline was saved.
Value: The finish date of the resource assignment when this baseline was saved.- Returns:
- the scheduled finish date of the resource assignment when the baseline was saved.
-
setFinish
public final void setFinish(Date value)
Sets the scheduled finish date of the resource assignment when the baseline was saved.
Value: The finish date of the resource assignment when this baseline was saved.- Parameters:
value
- the scheduled finish date of the resource assignment when the baseline was saved.
-
getStart
public final Date getStart()
Gets the scheduled start date of the resource assignment when the baseline was saved.
Value: The start date of the resource assignment when this baseline was saved.- Returns:
- the scheduled start date of the resource assignment when the baseline was saved.
-
setStart
public final void setStart(Date value)
Sets the scheduled start date of the resource assignment when the baseline was saved.
Value: The start date of the resource assignment when this baseline was saved.- Parameters:
value
- the scheduled start date of the resource assignment when the baseline was saved.
-
getTimephasedData
public final TimephasedDataCollection getTimephasedData()
Gets the
TimephasedDataCollection
instance for this object. The time phased data associated with the resource assignment baseline.- Returns:
- returns
TimephasedDataCollection
instance for this object. Value: The collection of Time phased data associated with this baseline.
-
setTimephasedData
public final void setTimephasedData(TimephasedDataCollection value)
Sets the
TimephasedDataCollection
instance for this object. The time phased data associated with the resource assignment baseline.- Parameters:
value
- theTimephasedDataCollection
instance for this object.
-
-