public class InitializedValueSelector extends AbstractValueSelector
ValueSelector
applies to) is uninitialized.
Mainly used for chained planning variables, but supports other planning variables too.Modifier and Type | Field and Description |
---|---|
protected boolean |
bailOutEnabled |
protected ValueSelector |
childValueSelector |
protected GenuineVariableDescriptor |
variableDescriptor |
logger, phaseLifecycleSupport, workingRandom
Constructor and Description |
---|
InitializedValueSelector(ValueSelector childValueSelector) |
Modifier and Type | Method and Description |
---|---|
protected long |
determineBailOutSize(Object entity) |
Iterator<Object> |
endingIterator(Object entity)
If
Selector.isNeverEnding() is true, then ValueSelector.iterator(Object) will never end. |
long |
getSize(Object entity)
Similar to
IterableSelector.getSize() , but requires an entity. |
GenuineVariableDescriptor |
getVariableDescriptor() |
boolean |
isCountable()
If false, then
Selector.isNeverEnding() is true. |
boolean |
isNeverEnding()
Is true if
Selector.isCountable() is false
or if this selector is in random order (for most cases). |
Iterator<Object> |
iterator(Object entity)
Similar to
Iterable.iterator() , but requires an entity. |
String |
toString() |
getCacheType, phaseEnded, phaseStarted, solvingEnded, solvingStarted, stepEnded, stepStarted
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
getCacheType
phaseEnded, phaseStarted, stepEnded, stepStarted
solvingEnded, solvingStarted
protected final GenuineVariableDescriptor variableDescriptor
protected final ValueSelector childValueSelector
protected final boolean bailOutEnabled
public InitializedValueSelector(ValueSelector childValueSelector)
public GenuineVariableDescriptor getVariableDescriptor()
public boolean isCountable()
Selector
Selector.isNeverEnding()
is true.ValueRange
s are countable
(for example a double value range between 1.2 and 1.4 is not countable)public boolean isNeverEnding()
Selector
Selector.isCountable()
is false
or if this selector is in random order (for most cases).
Is never true when this selector is in shuffled order (which is less scalable but more exact).Iterator.hasNext()
of the Iterator
created by Iterable.iterator()
never returns false (except when it's empty).public long getSize(Object entity)
ValueSelector
IterableSelector.getSize()
, but requires an entity.entity
- never nullSelector
, always >= 0public Iterator<Object> iterator(Object entity)
ValueSelector
Iterable.iterator()
, but requires an entity.entity
- never nullpublic Iterator<Object> endingIterator(Object entity)
ValueSelector
Selector.isNeverEnding()
is true, then ValueSelector.iterator(Object)
will never end.
This returns an ending Iterator
, that tries to match ValueSelector.iterator(Object)
as much as possible,
but return each distinct element only once
and therefore it might not respect the configuration of this ValueSelector
entirely.ValueSelector.iterator(Object)
protected long determineBailOutSize(Object entity)
Copyright © 2006-2015 JBoss by Red Hat. All Rights Reserved.