Class TagPathWithoutSourceCondition
- java.lang.Object
-
- com.inductiveautomation.ignition.common.tags.query.conditions.TagPathWithoutSourceCondition
-
public class TagPathWithoutSourceCondition extends java.lang.Object implements Condition<TagPath>
This condition checks the path, but does not take tag provider into account.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
TagPathWithoutSourceCondition.GsonAdapter
class
TagPathWithoutSourceCondition.SubPathCondition
protected class
TagPathWithoutSourceCondition.WildcardSubPath
-
Constructor Summary
Constructors Constructor Description TagPathWithoutSourceCondition()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
addPath(StringPath path)
void
addPath(TagPath path)
protected TagPathWithoutSourceCondition.SubPathCondition
create(StringPath path)
boolean
equals(java.lang.Object o)
java.util.List<TagPathWithoutSourceCondition.SubPathCondition>
getPaths()
int
hashCode()
boolean
passes(TagPath value)
Returns whether the provided value passes the condition.
-
-
-
Method Detail
-
addPath
public void addPath(TagPath path)
-
addPath
protected void addPath(StringPath path)
-
getPaths
public java.util.List<TagPathWithoutSourceCondition.SubPathCondition> getPaths()
-
passes
public boolean passes(TagPath value)
Description copied from interface:Condition
Returns whether the provided value passes the condition.
-
create
protected TagPathWithoutSourceCondition.SubPathCondition create(StringPath path)
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-