Class BooleanValueRange
java.lang.Object
org.optaplanner.core.impl.domain.valuerange.AbstractCountableValueRange<Boolean>
org.optaplanner.core.impl.domain.valuerange.buildin.primboolean.BooleanValueRange
- All Implemented Interfaces:
CountableValueRange<Boolean>,ValueRange<Boolean>
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanSelect the elements in original (natural) order.createRandomIterator(Random workingRandom) Select in random order, but without shuffling the elements.get(long index) Used by uniform random selection in a composite or nullable CountableValueRange.longgetSize()Used by uniform random selection in a composite or nullable CountableValueRange.toString()Methods inherited from class org.optaplanner.core.impl.domain.valuerange.AbstractCountableValueRange
isEmpty
-
Constructor Details
-
BooleanValueRange
public BooleanValueRange()
-
-
Method Details
-
getSize
public long getSize()Description copied from interface:CountableValueRangeUsed by uniform random selection in a composite or nullable CountableValueRange.- Returns:
- the exact number of elements generated by this
CountableValueRange, always>= 0
-
contains
- Parameters:
value- sometimes null- Returns:
- true if the ValueRange contains that value
-
get
Description copied from interface:CountableValueRangeUsed by uniform random selection in a composite or nullable CountableValueRange.- Parameters:
index- always<CountableValueRange.getSize()- Returns:
- sometimes null (if
PlanningVariable.nullable()is true)
-
createOriginalIterator
Description copied from interface:CountableValueRangeSelect the elements in original (natural) order.- Returns:
- never null
-
createRandomIterator
Description copied from interface:ValueRangeSelect in random order, but without shuffling the elements. Each element might be selected multiple times. Scales well because it does not require caching.- Parameters:
workingRandom- never null, theRandomto use when any random number is needed, so runs are reproducible.- Returns:
- never null
-
toString
-