| Modifier and Type | Field and Description |
|---|---|
static PatternSet |
EMPTY_SET |
| Constructor and Description |
|---|
PatternSet() |
PatternSet(java.util.Collection<Pattern> objects) |
PatternSet(Pattern... objects) |
| Modifier and Type | Method and Description |
|---|---|
PatternSet |
createDebugModeCondition(int value)
Loop through the current set of Pattern objects and collect those Pattern objects where the debugMode attribute matches the parameter value.
|
PatternSet |
createDebugModeCondition(int lower,
int upper)
Loop through the current set of Pattern objects and collect those Pattern objects where the debugMode attribute is between lower and upper.
|
PatternSet |
createDoAllMatchesCondition(boolean value)
Loop through the current set of Pattern objects and collect those Pattern objects where the doAllMatches attribute matches the parameter value.
|
PatternSet |
createHasMatchCondition(boolean value)
Loop through the current set of Pattern objects and collect those Pattern objects where the hasMatch attribute matches the parameter value.
|
PatternSet |
createModifierCondition(java.lang.String value)
Loop through the current set of Pattern objects and collect those Pattern objects where the modifier attribute matches the parameter value.
|
PatternSet |
createModifierCondition(java.lang.String lower,
java.lang.String upper)
Loop through the current set of Pattern objects and collect those Pattern objects where the modifier attribute is between lower and upper.
|
PatternSet |
createNameCondition(java.lang.String value)
Loop through the current set of Pattern objects and collect those Pattern objects where the name attribute matches the parameter value.
|
PatternSet |
createNameCondition(java.lang.String lower,
java.lang.String upper)
Loop through the current set of Pattern objects and collect those Pattern objects where the name attribute is between lower and upper.
|
PatternSet |
createPatternObjectNameCondition(java.lang.String value)
Loop through the current set of Pattern objects and collect those Pattern objects where the patternObjectName attribute matches the parameter value.
|
PatternSet |
createPatternObjectNameCondition(java.lang.String lower,
java.lang.String upper)
Loop through the current set of Pattern objects and collect those Pattern objects where the patternObjectName attribute is between lower and upper.
|
PatternPO |
createPatternPO() |
PatternSet |
filterCurrentSubPattern(java.lang.Object value)
Loop through the current set of Pattern objects and collect all contained objects with reference currentSubPattern pointing to the object passed as parameter.
|
PatternSet |
filterElements(java.lang.Object value)
Loop through the current set of Pattern objects and collect all contained objects with reference elements pointing to the object passed as parameter.
|
PatternSet |
filterPattern(java.lang.Object value)
Loop through the current set of Pattern objects and collect all contained objects with reference pattern pointing to the object passed as parameter.
|
PatternSet |
getCurrentSubPattern()
Loop through the current set of Pattern objects and collect a set of the Pattern objects reached via currentSubPattern.
|
PatternSet |
getCurrentSubPatternTransitive()
Follow currentSubPattern reference zero or more times and collect all reachable objects.
|
de.uniks.networkparser.list.NumberList |
getDebugMode()
Loop through the current set of Pattern objects and collect a list of the debugMode attribute values.
|
de.uniks.networkparser.list.BooleanList |
getDoAllMatches()
Loop through the current set of Pattern objects and collect a list of the doAllMatches attribute values.
|
PatternElementSet |
getElements()
Loop through the current set of Pattern objects and collect a set of the PatternElement objects reached via elements.
|
java.lang.String |
getEntryType() |
de.uniks.networkparser.list.BooleanList |
getHasMatch()
Loop through the current set of Pattern objects and collect a list of the hasMatch attribute values.
|
de.uniks.networkparser.list.ObjectSet |
getModifier()
Loop through the current set of Pattern objects and collect a list of the modifier attribute values.
|
de.uniks.networkparser.list.ObjectSet |
getName()
Loop through the current set of Pattern objects and collect a list of the name attribute values.
|
PatternSet |
getPattern()
Loop through the current set of Pattern objects and collect a set of the Pattern objects reached via pattern.
|
de.uniks.networkparser.list.ObjectSet |
getPatternObjectName()
Loop through the current set of Pattern objects and collect a list of the patternObjectName attribute values.
|
protected java.lang.Class<?> |
getTypClass() |
PatternSet |
with(java.lang.Object value) |
PatternSet |
withCurrentSubPattern(Pattern value)
Loop through current set of ModelType objects and attach the Pattern object passed as parameter to the CurrentSubPattern attribute of each of it.
|
PatternSet |
withDebugMode(int value)
Loop through the current set of Pattern objects and assign value to the debugMode attribute of each of it.
|
PatternSet |
withDoAllMatches(boolean value)
Loop through the current set of Pattern objects and assign value to the doAllMatches attribute of each of it.
|
PatternSet |
withElements(PatternElement value)
Loop through current set of ModelType objects and attach the Pattern object passed as parameter to the Elements attribute of each of it.
|
PatternSet |
withHasMatch(boolean value)
Loop through the current set of Pattern objects and assign value to the hasMatch attribute of each of it.
|
PatternSet |
withModifier(java.lang.String value)
Loop through the current set of Pattern objects and assign value to the modifier attribute of each of it.
|
PatternSet |
withName(java.lang.String value)
Loop through the current set of Pattern objects and assign value to the name attribute of each of it.
|
PatternSet |
without(Pattern value) |
PatternSet |
withoutElements(PatternElement value)
Loop through current set of ModelType objects and remove the Pattern object passed as parameter from the Elements attribute of each of it.
|
PatternSet |
withPattern(Pattern value)
Loop through current set of ModelType objects and attach the Pattern object passed as parameter to the Pattern attribute of each of it.
|
PatternSet |
withPatternObjectName(java.lang.String value)
Loop through the current set of Pattern objects and assign value to the patternObjectName 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, withVisibleequals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitpublic static final PatternSet EMPTY_SET
public PatternSet()
public PatternSet(Pattern... objects)
public PatternSet(java.util.Collection<Pattern> objects)
protected java.lang.Class<?> getTypClass()
getTypClass in class de.uniks.networkparser.list.AbstractArray<Pattern>public PatternPO createPatternPO()
public java.lang.String getEntryType()
public PatternSet with(java.lang.Object value)
public PatternSet without(Pattern value)
public de.uniks.networkparser.list.NumberList getDebugMode()
public PatternSet createDebugModeCondition(int value)
value - Search valuepublic PatternSet createDebugModeCondition(int lower, int upper)
lower - Lower boundupper - Upper boundpublic PatternSet withDebugMode(int value)
value - New attribute valuepublic de.uniks.networkparser.list.ObjectSet getName()
public PatternSet createNameCondition(java.lang.String value)
value - Search valuepublic PatternSet createNameCondition(java.lang.String lower, java.lang.String upper)
lower - Lower boundupper - Upper boundpublic PatternSet withName(java.lang.String value)
value - New attribute valuepublic de.uniks.networkparser.list.ObjectSet getModifier()
public PatternSet createModifierCondition(java.lang.String value)
value - Search valuepublic PatternSet createModifierCondition(java.lang.String lower, java.lang.String upper)
lower - Lower boundupper - Upper boundpublic PatternSet withModifier(java.lang.String value)
value - New attribute valuepublic de.uniks.networkparser.list.BooleanList getHasMatch()
public PatternSet createHasMatchCondition(boolean value)
value - Search valuepublic PatternSet withHasMatch(boolean value)
value - New attribute valuepublic de.uniks.networkparser.list.ObjectSet getPatternObjectName()
public PatternSet createPatternObjectNameCondition(java.lang.String value)
value - Search valuepublic PatternSet createPatternObjectNameCondition(java.lang.String lower, java.lang.String upper)
lower - Lower boundupper - Upper boundpublic PatternSet withPatternObjectName(java.lang.String value)
value - New attribute valuepublic de.uniks.networkparser.list.BooleanList getDoAllMatches()
public PatternSet createDoAllMatchesCondition(boolean value)
value - Search valuepublic PatternSet withDoAllMatches(boolean value)
value - New attribute valuepublic PatternSet getPattern()
public PatternSet filterPattern(java.lang.Object value)
value - The object required as pattern neighbor of the collected results.public PatternSet withPattern(Pattern value)
public PatternElementSet getElements()
public PatternSet filterElements(java.lang.Object value)
value - The object required as elements neighbor of the collected results.public PatternSet withElements(PatternElement value)
public PatternSet withoutElements(PatternElement value)
public PatternSet getCurrentSubPattern()
public PatternSet filterCurrentSubPattern(java.lang.Object value)
value - The object required as currentSubPattern neighbor of the collected results.public PatternSet getCurrentSubPatternTransitive()
public PatternSet withCurrentSubPattern(Pattern value)