public enum ExpressionLanguageScope extends Enum<ExpressionLanguageScope>
Enum Constant and Description |
---|
FLOWFILE_ATTRIBUTES
Expression language is evaluated per flow file using attributes
|
NONE
Expression language is disabled
|
VARIABLE_REGISTRY
Expression language is evaluated against variables in registry
|
Modifier and Type | Field and Description |
---|---|
private String |
description |
Modifier and Type | Method and Description |
---|---|
String |
getDescription() |
static ExpressionLanguageScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExpressionLanguageScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExpressionLanguageScope NONE
public static final ExpressionLanguageScope VARIABLE_REGISTRY
public static final ExpressionLanguageScope FLOWFILE_ATTRIBUTES
private String description
public static ExpressionLanguageScope[] values()
for (ExpressionLanguageScope c : ExpressionLanguageScope.values()) System.out.println(c);
public static ExpressionLanguageScope valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic String getDescription()
Copyright © 2022 Apache NiFi Project. All rights reserved.