Package org.camunda.bpm.engine.impl.juel
Interface IdentifierNode
-
- All Superinterfaces:
Node
- All Known Implementing Classes:
AstIdentifier
public interface IdentifierNode extends Node
Identifier node interface.- Author:
- Christoph Beck
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetIndex()Get the unique index of this identifier in the expression (e.g.StringgetName()Get the identifier name-
Methods inherited from interface org.camunda.bpm.engine.impl.juel.Node
getCardinality, getChild
-
-
-
-
Method Detail
-
getName
String getName()
Get the identifier name
-
getIndex
int getIndex()
Get the unique index of this identifier in the expression (e.g. preorder index)
-
-