Class OrExpressionNode
- java.lang.Object
-
- de.captaingoldfish.scim.sdk.server.filter.FilterNode
-
- de.captaingoldfish.scim.sdk.server.filter.OrExpressionNode
-
public final class OrExpressionNode extends FilterNode
author Pascal Knueppel
created at: 16.10.2019 - 16:52
represents two expressions that should be put together as an or operation
-
-
Constructor Summary
Constructors Constructor Description OrExpressionNode(FilterNode leftNode, FilterNode rightNode)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(Object other)booleanequals(Object o)FilterNodegetLeftNode()the left and the right node of this expressionFilterNodegetRightNode()inthashCode()StringtoString()-
Methods inherited from class de.captaingoldfish.scim.sdk.server.filter.FilterNode
getParent, getSubAttributeName, setParent, setSubAttributeName
-
-
-
-
Constructor Detail
-
OrExpressionNode
public OrExpressionNode(FilterNode leftNode, FilterNode rightNode)
-
-
Method Detail
-
canEqual
protected boolean canEqual(Object other)
-
getLeftNode
public FilterNode getLeftNode()
the left and the right node of this expression
-
getRightNode
public FilterNode getRightNode()
-
-