public class AttributeConstraintSet extends de.uniks.networkparser.list.SimpleSet<AttributeConstraint>
| Modifier and Type | Field and Description |
|---|---|
static AttributeConstraintSet |
EMPTY_SET |
| Constructor and Description |
|---|
AttributeConstraintSet() |
AttributeConstraintSet(AttributeConstraint... objects) |
AttributeConstraintSet(java.util.Collection<AttributeConstraint> objects) |
| Modifier and Type | Method and Description |
|---|---|
AttributeConstraintPO |
createAttributeConstraintPO() |
AttributeConstraintSet |
createAttrNameCondition(java.lang.String value)
Loop through the current set of AttributeConstraint objects and collect those AttributeConstraint objects where the attrName attribute matches the parameter value.
|
AttributeConstraintSet |
createAttrNameCondition(java.lang.String lower,
java.lang.String upper)
Loop through the current set of AttributeConstraint objects and collect those AttributeConstraint objects where the attrName attribute is between lower and upper.
|
AttributeConstraintSet |
createCmpOpCondition(java.lang.String value)
Loop through the current set of AttributeConstraint objects and collect those AttributeConstraint objects where the cmpOp attribute matches the parameter value.
|
AttributeConstraintSet |
createCmpOpCondition(java.lang.String lower,
java.lang.String upper)
Loop through the current set of AttributeConstraint objects and collect those AttributeConstraint objects where the cmpOp attribute is between lower and upper.
|
AttributeConstraintSet |
createDoAllMatchesCondition(boolean value)
Loop through the current set of AttributeConstraint objects and collect those AttributeConstraint objects where the doAllMatches attribute matches the parameter value.
|
AttributeConstraintSet |
createHasMatchCondition(boolean value)
Loop through the current set of AttributeConstraint objects and collect those AttributeConstraint objects where the hasMatch attribute matches the parameter value.
|
AttributeConstraintSet |
createHostGraphSrcObjectCondition(java.lang.Object value)
Loop through the current set of AttributeConstraint objects and collect those AttributeConstraint objects where the hostGraphSrcObject attribute matches the parameter value.
|
AttributeConstraintSet |
createModifierCondition(java.lang.String value)
Loop through the current set of AttributeConstraint objects and collect those AttributeConstraint objects where the modifier attribute matches the parameter value.
|
AttributeConstraintSet |
createModifierCondition(java.lang.String lower,
java.lang.String upper)
Loop through the current set of AttributeConstraint objects and collect those AttributeConstraint objects where the modifier attribute is between lower and upper.
|
AttributeConstraintSet |
createPatternObjectNameCondition(java.lang.String value)
Loop through the current set of AttributeConstraint objects and collect those AttributeConstraint objects where the patternObjectName attribute matches the parameter value.
|
AttributeConstraintSet |
createPatternObjectNameCondition(java.lang.String lower,
java.lang.String upper)
Loop through the current set of AttributeConstraint objects and collect those AttributeConstraint objects where the patternObjectName attribute is between lower and upper.
|
AttributeConstraintSet |
createTgtValueCondition(java.lang.Object value)
Loop through the current set of AttributeConstraint objects and collect those AttributeConstraint objects where the tgtValue attribute matches the parameter value.
|
AttributeConstraintSet |
createUpperTgtValueCondition(java.lang.Object value)
Loop through the current set of AttributeConstraint objects and collect those AttributeConstraint objects where the upperTgtValue attribute matches the parameter value.
|
AttributeConstraintSet |
filterPattern(java.lang.Object value)
Loop through the current set of AttributeConstraint objects and collect all contained objects with reference pattern pointing to the object passed as parameter.
|
AttributeConstraintSet |
filterSrc(java.lang.Object value)
Loop through the current set of AttributeConstraint objects and collect all contained objects with reference src pointing to the object passed as parameter.
|
de.uniks.networkparser.list.ObjectSet |
getAttrName()
Loop through the current set of AttributeConstraint objects and collect a list of the attrName attribute values.
|
de.uniks.networkparser.list.ObjectSet |
getCmpOp()
Loop through the current set of AttributeConstraint objects and collect a list of the cmpOp attribute values.
|
de.uniks.networkparser.list.BooleanList |
getDoAllMatches()
Loop through the current set of AttributeConstraint objects and collect a list of the doAllMatches attribute values.
|
java.lang.String |
getEntryType() |
de.uniks.networkparser.list.BooleanList |
getHasMatch()
Loop through the current set of AttributeConstraint objects and collect a list of the hasMatch attribute values.
|
de.uniks.networkparser.list.ObjectSet |
getHostGraphSrcObject()
Loop through the current set of AttributeConstraint objects and collect a list of the hostGraphSrcObject attribute values.
|
de.uniks.networkparser.list.ObjectSet |
getModifier()
Loop through the current set of AttributeConstraint objects and collect a list of the modifier attribute values.
|
PatternSet |
getPattern()
Loop through the current set of AttributeConstraint objects and collect a set of the Pattern objects reached via pattern.
|
de.uniks.networkparser.list.ObjectSet |
getPatternObjectName()
Loop through the current set of AttributeConstraint objects and collect a list of the patternObjectName attribute values.
|
PatternObjectSet |
getSrc()
Loop through the current set of AttributeConstraint objects and collect a set of the PatternObject objects reached via src.
|
de.uniks.networkparser.list.ObjectSet |
getTgtValue()
Loop through the current set of AttributeConstraint objects and collect a list of the tgtValue attribute values.
|
protected java.lang.Class<?> |
getTypClass() |
de.uniks.networkparser.list.ObjectSet |
getUpperTgtValue()
Loop through the current set of AttributeConstraint objects and collect a list of the upperTgtValue attribute values.
|
AttributeConstraintSet |
with(java.lang.Object value) |
AttributeConstraintSet |
withAttrName(java.lang.String value)
Loop through the current set of AttributeConstraint objects and assign value to the attrName attribute of each of it.
|
AttributeConstraintSet |
withCmpOp(java.lang.String value)
Loop through the current set of AttributeConstraint objects and assign value to the cmpOp attribute of each of it.
|
AttributeConstraintSet |
withDoAllMatches(boolean value)
Loop through the current set of AttributeConstraint objects and assign value to the doAllMatches attribute of each of it.
|
AttributeConstraintSet |
withHasMatch(boolean value)
Loop through the current set of AttributeConstraint objects and assign value to the hasMatch attribute of each of it.
|
AttributeConstraintSet |
withHostGraphSrcObject(java.lang.Object value)
Loop through the current set of AttributeConstraint objects and assign value to the hostGraphSrcObject attribute of each of it.
|
AttributeConstraintSet |
withModifier(java.lang.String value)
Loop through the current set of AttributeConstraint objects and assign value to the modifier attribute of each of it.
|
AttributeConstraintSet |
without(AttributeConstraint value) |
AttributeConstraintSet |
withPattern(Pattern value)
Loop through current set of ModelType objects and attach the AttributeConstraint object passed as parameter to the Pattern attribute of each of it.
|
AttributeConstraintSet |
withPatternObjectName(java.lang.String value)
Loop through the current set of AttributeConstraint objects and assign value to the patternObjectName attribute of each of it.
|
AttributeConstraintSet |
withSrc(PatternObject value)
Loop through current set of ModelType objects and attach the AttributeConstraint object passed as parameter to the Src attribute of each of it.
|
AttributeConstraintSet |
withTgtValue(java.lang.Object value)
Loop through the current set of AttributeConstraint objects and assign value to the tgtValue attribute of each of it.
|
AttributeConstraintSet |
withUpperTgtValue(java.lang.Object value)
Loop through the current set of AttributeConstraint objects and assign value to the upperTgtValue 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, notify, notifyAll, wait, wait, waitpublic static final AttributeConstraintSet EMPTY_SET
public AttributeConstraintSet()
public AttributeConstraintSet(AttributeConstraint... objects)
public AttributeConstraintSet(java.util.Collection<AttributeConstraint> objects)
protected java.lang.Class<?> getTypClass()
getTypClass in class de.uniks.networkparser.list.AbstractArray<AttributeConstraint>public AttributeConstraintPO createAttributeConstraintPO()
public java.lang.String getEntryType()
public AttributeConstraintSet with(java.lang.Object value)
public AttributeConstraintSet without(AttributeConstraint value)
public de.uniks.networkparser.list.ObjectSet getAttrName()
public AttributeConstraintSet createAttrNameCondition(java.lang.String value)
value - Search valuepublic AttributeConstraintSet createAttrNameCondition(java.lang.String lower, java.lang.String upper)
lower - Lower boundupper - Upper boundpublic AttributeConstraintSet withAttrName(java.lang.String value)
value - New attribute valuepublic de.uniks.networkparser.list.ObjectSet getTgtValue()
public AttributeConstraintSet createTgtValueCondition(java.lang.Object value)
value - Search valuepublic AttributeConstraintSet withTgtValue(java.lang.Object value)
value - New attribute valuepublic de.uniks.networkparser.list.ObjectSet getUpperTgtValue()
public AttributeConstraintSet createUpperTgtValueCondition(java.lang.Object value)
value - Search valuepublic AttributeConstraintSet withUpperTgtValue(java.lang.Object value)
value - New attribute valuepublic de.uniks.networkparser.list.ObjectSet getCmpOp()
public AttributeConstraintSet createCmpOpCondition(java.lang.String value)
value - Search valuepublic AttributeConstraintSet createCmpOpCondition(java.lang.String lower, java.lang.String upper)
lower - Lower boundupper - Upper boundpublic AttributeConstraintSet withCmpOp(java.lang.String value)
value - New attribute valuepublic de.uniks.networkparser.list.ObjectSet getHostGraphSrcObject()
public AttributeConstraintSet createHostGraphSrcObjectCondition(java.lang.Object value)
value - Search valuepublic AttributeConstraintSet withHostGraphSrcObject(java.lang.Object value)
value - New attribute valuepublic de.uniks.networkparser.list.ObjectSet getModifier()
public AttributeConstraintSet createModifierCondition(java.lang.String value)
value - Search valuepublic AttributeConstraintSet createModifierCondition(java.lang.String lower, java.lang.String upper)
lower - Lower boundupper - Upper boundpublic AttributeConstraintSet withModifier(java.lang.String value)
value - New attribute valuepublic de.uniks.networkparser.list.BooleanList getHasMatch()
public AttributeConstraintSet createHasMatchCondition(boolean value)
value - Search valuepublic AttributeConstraintSet withHasMatch(boolean value)
value - New attribute valuepublic de.uniks.networkparser.list.ObjectSet getPatternObjectName()
public AttributeConstraintSet createPatternObjectNameCondition(java.lang.String value)
value - Search valuepublic AttributeConstraintSet createPatternObjectNameCondition(java.lang.String lower, java.lang.String upper)
lower - Lower boundupper - Upper boundpublic AttributeConstraintSet withPatternObjectName(java.lang.String value)
value - New attribute valuepublic de.uniks.networkparser.list.BooleanList getDoAllMatches()
public AttributeConstraintSet createDoAllMatchesCondition(boolean value)
value - Search valuepublic AttributeConstraintSet withDoAllMatches(boolean value)
value - New attribute valuepublic PatternSet getPattern()
public AttributeConstraintSet filterPattern(java.lang.Object value)
value - The object required as pattern neighbor of the collected results.public AttributeConstraintSet withPattern(Pattern value)
public PatternObjectSet getSrc()
public AttributeConstraintSet filterSrc(java.lang.Object value)
value - The object required as src neighbor of the collected results.public AttributeConstraintSet withSrc(PatternObject value)