public enum VersionedResourceType extends Enum<VersionedResourceType>
| Enum Constant and Description |
|---|
DIRECTORY
Referenced Resource is a directory on a local (or mounted) file system
|
FILE
Referenced Resource is a File on a local (or mounted) file system
|
TEXT
Referenced Resource is UTF-8 text, rather than an external entity
|
URL
Referenced Resource is a URL that uses the HTTP, HTTPS, or file protocol
(i.e.,
http://..., https://..., or file:...) |
| Modifier and Type | Method and Description |
|---|---|
static VersionedResourceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VersionedResourceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VersionedResourceType FILE
public static final VersionedResourceType DIRECTORY
public static final VersionedResourceType TEXT
public static final VersionedResourceType URL
http://..., https://..., or file:...)public static VersionedResourceType[] values()
for (VersionedResourceType c : VersionedResourceType.values()) System.out.println(c);
public static VersionedResourceType 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 nullCopyright © 2023 Apache NiFi Project. All rights reserved.