public interface ParameterToken
| Modifier and Type | Method and Description |
|---|---|
int |
getEndOffset() |
int |
getStartOffset() |
String |
getText() |
String |
getValue(ParameterLookup lookup)
Returns the 'value' of the token.
|
boolean |
isEscapeSequence() |
boolean |
isParameterReference() |
int getStartOffset()
int getEndOffset()
String getText()
boolean isEscapeSequence()
true if this token represents an escape sequence such as ##{param} or ## in the case of ###{param} or ####{param}, false if this
token does not represent an escape sequence.boolean isParameterReference()
true if this token represents a reference to a Parameter. If this method returns true, then this token can be cast
as a ParameterReference.String getValue(ParameterLookup lookup)
lookup - the Parameter Lookup to use for looking up valuesCopyright © 2023 Apache NiFi Project. All rights reserved.