|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IParameterFieldRangeValue
This interface is used to get and set values
for a ranged parameter.
The ParameterFieldRangeValue
object stores the
value for a ranged parameter.
The object contains the upper bound, the lower bound range,
and how the two are treated: that is if they exist, are included,
and so on.
Method Summary | |
---|---|
java.lang.Object |
getBeginValue()
Returns the lower-bound value of the range. |
java.lang.Object |
getEndValue()
Returns the upper-bound value of the range. |
RangeValueBoundType |
getLowerBoundType()
Returns how the lower bound of the range is treated. |
RangeValueBoundType |
getUpperBoundType()
Returns how the upper bound of the range is treated. |
void |
setBeginValue(java.lang.Object beginValue)
Sets the lower-bound value of the range. |
void |
setEndValue(java.lang.Object endValue)
Returns the upper-bound value of the range. |
void |
setLowerBoundType(RangeValueBoundType lowerBoundType)
Sets how the lower bound of the range is treated. |
void |
setUpperBoundType(RangeValueBoundType upperBoundType)
Sets how the upper bound of the range is treated. |
Methods inherited from interface com.crystaldecisions.sdk.occa.report.data.IParameterFieldValue |
---|
getDescription, setDescription |
Methods inherited from interface com.crystaldecisions.sdk.occa.report.data.IValue |
---|
computeText, displayText |
Method Detail |
---|
java.lang.Object getBeginValue()
Returns the lower-bound value of the range.
Use the getEndValue()
method to determine
the upper-bound value.
Object
.java.lang.Object getEndValue()
Returns the upper-bound value of the range.
Use the getBeginValue()
method to determine
the lower-bound value.
Object
.RangeValueBoundType getLowerBoundType()
Returns how the lower bound of the range is treated. Can also specify that the range has no lower bound.
RangeValueBoundType
Object
.RangeValueBoundType getUpperBoundType()
Returns how the upper bound of the range is treated. Can also specify that the range has no upper bound.
RangeValueBoundType
object.void setBeginValue(java.lang.Object beginValue)
Sets the lower-bound value of the range.
Use the getEndValue()
method to determine
the upper-bound value.
beginValue
- The lower-bound value as an Object
.void setEndValue(java.lang.Object endValue)
Returns the upper-bound value of the range.
Use the getBeginValue()
method to determine
the lower-bound value.
endValue
- The upper-bound value as an Object
.void setLowerBoundType(RangeValueBoundType lowerBoundType)
Sets how the lower bound of the range is treated. This method can also be used to specify that the range has no lower bound.
lowerBoundType
- How the lower bound of the range is treated
as a RangeValueBoundType
Object
.void setUpperBoundType(RangeValueBoundType upperBoundType)
Sets how the upper bound of the range is treated. This method can also be used to specify that the range has no upper bound.
upperBoundType
- How the upper bound of the range is treated
as a RangeValueBoundType
object.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |