public class ReachableStateSet extends de.uniks.networkparser.list.SimpleSet<ReachableState>
| Modifier and Type | Field and Description |
|---|---|
static ReachableStateSet |
EMPTY_SET |
| Constructor and Description |
|---|
ReachableStateSet() |
ReachableStateSet(java.util.Collection<ReachableState> objects) |
ReachableStateSet(ReachableState... objects) |
| Modifier and Type | Method and Description |
|---|---|
ReachableStateSet |
createGraphRootCondition(java.lang.Object value)
Loop through the current set of ReachableState objects and collect those ReachableState objects where the graphRoot attribute matches the parameter value.
|
ReachableStateSet |
createMetricValueCondition(double value)
Loop through the current set of ReachableState objects and collect those ReachableState objects where the metricValue attribute matches the parameter value.
|
ReachableStateSet |
createMetricValueCondition(double lower,
double upper)
Loop through the current set of ReachableState objects and collect those ReachableState objects where the metricValue attribute is between lower and upper.
|
ReachableStateSet |
createNumberCondition(long value)
Loop through the current set of ReachableState objects and collect those ReachableState objects where the number attribute matches the parameter value.
|
ReachableStateSet |
createNumberCondition(long lower,
long upper)
Loop through the current set of ReachableState objects and collect those ReachableState objects where the number attribute is between lower and upper.
|
ReachableStatePO |
createReachableStatePO() |
ReachableStateSet |
filterParent(java.lang.Object value)
Loop through the current set of ReachableState objects and collect all contained objects with reference parent pointing to the object passed as parameter.
|
ReachableStateSet |
filterResultOf(java.lang.Object value)
Loop through the current set of ReachableState objects and collect all contained objects with reference resultOf pointing to the object passed as parameter.
|
ReachableStateSet |
filterRuleapplications(java.lang.Object value)
Loop through the current set of ReachableState objects and collect all contained objects with reference ruleapplications pointing to the object passed as parameter.
|
java.lang.String |
getEntryType() |
de.uniks.networkparser.list.ObjectSet |
getGraphRoot()
Loop through the current set of ReachableState objects and collect a list of the graphRoot attribute values.
|
de.uniks.networkparser.list.NumberList |
getMetricValue()
Loop through the current set of ReachableState objects and collect a list of the metricValue attribute values.
|
de.uniks.networkparser.list.NumberList |
getNumber()
Loop through the current set of ReachableState objects and collect a list of the number attribute values.
|
ReachabilityGraphSet |
getParent()
Loop through the current set of ReachableState objects and collect a set of the ReachabilityGraph objects reached via parent.
|
RuleApplicationSet |
getResultOf()
Loop through the current set of ReachableState objects and collect a set of the RuleApplication objects reached via resultOf.
|
RuleApplicationSet |
getRuleapplications()
Loop through the current set of ReachableState objects and collect a set of the RuleApplication objects reached via ruleapplications.
|
protected java.lang.Class<?> |
getTypClass() |
ReachableStateSet |
with(java.lang.Object value) |
ReachableStateSet |
withGraphRoot(java.lang.Object value)
Loop through the current set of ReachableState objects and assign value to the graphRoot attribute of each of it.
|
ReachableStateSet |
withMetricValue(double value)
Loop through the current set of ReachableState objects and assign value to the metricValue attribute of each of it.
|
ReachableStateSet |
withNumber(long value)
Loop through the current set of ReachableState objects and assign value to the number attribute of each of it.
|
ReachableStateSet |
without(ReachableState value) |
ReachableStateSet |
withoutResultOf(RuleApplication value)
Loop through current set of ModelType objects and remove the ReachableState object passed as parameter from the ResultOf attribute of each of it.
|
ReachableStateSet |
withoutRuleapplications(RuleApplication value)
Loop through current set of ModelType objects and remove the ReachableState object passed as parameter from the Ruleapplications attribute of each of it.
|
ReachableStateSet |
withParent(ReachabilityGraph value)
Loop through current set of ModelType objects and attach the ReachableState object passed as parameter to the Parent attribute of each of it.
|
ReachableStateSet |
withResultOf(RuleApplication value)
Loop through current set of ModelType objects and attach the ReachableState object passed as parameter to the ResultOf attribute of each of it.
|
ReachableStateSet |
withRuleapplications(RuleApplication value)
Loop through current set of ModelType objects and attach the ReachableState object passed as parameter to the Ruleapplications attribute of each of it.
|
add, add, addAll, addAll, clone, filter, fireProperty, getNewList, instanceOf, intersection, minus, remove, remove, set, subList, toString, toString, union, with, withListenerceiling, copyEntity, equals, filterItems, hashCode, iterator, iterator, iteratorReverse, listIterator, listIterator, subSet, withListaddHashItem, addKeyValue, checkValue, clear, comparator, contains, containsAll, first, flag, get, getByIndex, getKeyByIndex, getPositionKey, getValue, hashKey, hasKeyAndPos, indexOf, init, init, init, isAllowDuplicate, isAllowEmptyValue, isCaseSensitive, isComparator, isEmpty, isReadOnly, isVisible, last, lastIndexOf, move, pack, parseItem, removeAll, removeByIndex, removeByObject, removeItem, reset, retainAll, setAllowEmptyValue, setFlag, setValue, size, toArray, toArray, toString, withAllowDuplicate, withAllowEmptyValue, withCaseSensitive, withFlag, without, withSize, withType, withVisiblefinalize, getClass, hashCode, notify, notifyAll, wait, wait, waitpublic static final ReachableStateSet EMPTY_SET
public ReachableStateSet()
public ReachableStateSet(ReachableState... objects)
public ReachableStateSet(java.util.Collection<ReachableState> objects)
protected java.lang.Class<?> getTypClass()
getTypClass in class de.uniks.networkparser.list.AbstractArray<ReachableState>public ReachableStatePO createReachableStatePO()
public java.lang.String getEntryType()
public ReachableStateSet with(java.lang.Object value)
public ReachableStateSet without(ReachableState value)
public de.uniks.networkparser.list.NumberList getNumber()
public ReachableStateSet createNumberCondition(long value)
value - Search valuepublic ReachableStateSet createNumberCondition(long lower, long upper)
lower - Lower boundupper - Upper boundpublic ReachableStateSet withNumber(long value)
value - New attribute valuepublic de.uniks.networkparser.list.NumberList getMetricValue()
public ReachableStateSet createMetricValueCondition(double value)
value - Search valuepublic ReachableStateSet createMetricValueCondition(double lower, double upper)
lower - Lower boundupper - Upper boundpublic ReachableStateSet withMetricValue(double value)
value - New attribute valuepublic de.uniks.networkparser.list.ObjectSet getGraphRoot()
public ReachableStateSet createGraphRootCondition(java.lang.Object value)
value - Search valuepublic ReachableStateSet withGraphRoot(java.lang.Object value)
value - New attribute valuepublic ReachabilityGraphSet getParent()
public ReachableStateSet filterParent(java.lang.Object value)
value - The object required as parent neighbor of the collected results.public ReachableStateSet withParent(ReachabilityGraph value)
public RuleApplicationSet getRuleapplications()
public ReachableStateSet filterRuleapplications(java.lang.Object value)
value - The object required as ruleapplications neighbor of the collected results.public ReachableStateSet withRuleapplications(RuleApplication value)
public ReachableStateSet withoutRuleapplications(RuleApplication value)
public RuleApplicationSet getResultOf()
public ReachableStateSet filterResultOf(java.lang.Object value)
value - The object required as resultOf neighbor of the collected results.public ReachableStateSet withResultOf(RuleApplication value)
value - RuleApplicationpublic ReachableStateSet withoutResultOf(RuleApplication value)
value - RuleApplication