Oracle Warehouse Builder Java API Reference
10g Release 1 (10.1)

B12155-01

oracle.owb.foundation.domain
Interface Range


public interface Range

Range is a range of values.

Author:
Xiaoge Zhang

Method Summary
 Value getMaximumValue()
          Return the maximum value of the range.
 Value getMinimumValue()
          Return the minimum value of the range.
 boolean inRange(Value value)
          Check if the value is in range.
 boolean isMaximumValueInclusive()
          Return true if the maximum value is in this range.
 boolean isMinimumValueInclusive()
          Return true if the minimum value is in this range.

 

Method Detail

getMinimumValue

public Value getMinimumValue()
Return the minimum value of the range.
Returns:
minimum value.

getMaximumValue

public Value getMaximumValue()
Return the maximum value of the range.
Returns:
maximum value.

isMinimumValueInclusive

public boolean isMinimumValueInclusive()
Return true if the minimum value is in this range.
Returns:
if minimum value in the range.

isMaximumValueInclusive

public boolean isMaximumValueInclusive()
Return true if the maximum value is in this range.
Returns:
if maximum value in the range.

inRange

public boolean inRange(Value value)
Check if the value is in range.
Parameters:
value - is the value to be checked.
Returns:
true if the value is inside the range.

Oracle Warehouse Builder Java API Reference
10g Release 1 (10.1)

B12155-01

Copyright © 2003, Oracle. All Rights Reserved.