public enum CoreAttributes extends Enum<CoreAttributes> implements FlowFileAttributeKey
| Enum Constant and Description |
|---|
ABSOLUTE_PATH
The FlowFile's absolute path indicates the absolute directory to which a FlowFile belongs and does not contain the filename
|
ALTERNATE_IDENTIFIER
Indicates an identifier other than the FlowFile's UUID that is known to refer to this FlowFile.
|
DISCARD_REASON
Specifies the reason that a FlowFile is being discarded
|
FILENAME
The filename of the FlowFile.
|
MIME_TYPE
The MIME Type of this FlowFile
|
PATH
The FlowFile's path indicates the relative directory to which a FlowFile belongs and does not contain the filename
|
PRIORITY
A numeric value indicating the FlowFile priority
|
UUID
A unique UUID assigned to this FlowFile
|
| Modifier and Type | Method and Description |
|---|---|
String |
key() |
static CoreAttributes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CoreAttributes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoreAttributes PATH
public static final CoreAttributes ABSOLUTE_PATH
public static final CoreAttributes FILENAME
public static final CoreAttributes UUID
public static final CoreAttributes PRIORITY
public static final CoreAttributes MIME_TYPE
public static final CoreAttributes DISCARD_REASON
public static final CoreAttributes ALTERNATE_IDENTIFIER
private final String key
public static CoreAttributes[] values()
for (CoreAttributes c : CoreAttributes.values()) System.out.println(c);
public static CoreAttributes 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 key()
key in interface FlowFileAttributeKeyCopyright © 2023 Apache NiFi Project. All rights reserved.