public class Baseline extends Object implements Comparable<Baseline>
Represents baseline values of a resource.
Modifier and Type | Method and Description |
---|---|
int |
compareTo(Baseline obj)
Returns a value indicating whether this instance is greater or less than a specified object.
|
boolean |
equals(Object obj)
Returns a value indicating whether this instance is equal to a specified object.
|
int |
getBaselineNumber()
Gets the unique number of a baseline data record.
|
double |
getBcwp()
Gets the budgeted cost of a work performed by a resource for a project to-date.
|
double |
getBcws()
Gets the budget cost of a work scheduled for a resource.
|
BigDecimal |
getCost()
Gets the projected cost of a resource when the baseline is saved.
|
Duration |
getWork()
Gets the work assigned to a resource when the baseline is saved.
|
int |
hashCode()
Returns a hash code for this Baseline object.
|
void |
setBaselineNumber(int value)
Sets the unique number of a baseline data record.
|
void |
setBcwp(double value)
Sets the budgeted cost of a work performed by a resource for a project to-date.
|
void |
setBcws(double value)
Sets the budget cost of a work scheduled for a resource.
|
void |
setCost(BigDecimal value)
Sets the projected cost of a resource when the baseline is saved.
|
void |
setWork(Duration value)
Sets the work assigned to a resource when the baseline is saved.
|
public final int compareTo(Baseline obj)
compareTo
in interface Comparable<Baseline>
obj
- The object to compare with this instance.public final int getBaselineNumber()
Gets the unique number of a baseline data record.
Read/write BaselineType
.
public final void setBaselineNumber(int value)
Sets the unique number of a baseline data record.
Read/write BaselineType
.
value
- the unique number of a baseline data record.public final double getBcwp()
Gets the budgeted cost of a work performed by a resource for a project to-date.
Read/write double
.
public final void setBcwp(double value)
Sets the budgeted cost of a work performed by a resource for a project to-date.
Read/write double
.
value
- the budgeted cost of a work performed by a resource for a project to-date.public final double getBcws()
Gets the budget cost of a work scheduled for a resource.
Read/write double
.
public final void setBcws(double value)
Sets the budget cost of a work scheduled for a resource.
Read/write double
.
value
- the budget cost of a work scheduled for a resource.public final BigDecimal getCost()
Gets the projected cost of a resource when the baseline is saved.
Read/write decimal
.
public final void setCost(BigDecimal value)
Sets the projected cost of a resource when the baseline is saved.
Read/write BigDecimal
.
value
- the projected cost of a resource when the baseline is saved.public final Duration getWork()
Gets the work assigned to a resource when the baseline is saved.
Read/write Duration
.
public final void setWork(Duration value)
Sets the work assigned to a resource when the baseline is saved.
Read/write Duration
.
value
- the work assigned to a resource when the baseline is saved.public boolean equals(Object obj)