Package org.apache.nifi.components
Enum Class PortFunction
- All Implemented Interfaces:
Serializable
,Comparable<PortFunction>
,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic PortFunction
Returns the enum constant of this class with the specified name.static PortFunction[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
STANDARD
Port functions as a standard port, transferring FlowFiles to all outgoing connections. -
FAILURE
Port denotes that the invocation of the stateless flow has failed. If run using the Standard Engine, will operate as a Standard port. If running using the Stateless Engine, the transaction is rolled back, and any input FlowFiles will be transferred to this Port.
-
-
Constructor Details
-
PortFunction
private PortFunction()
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-