public enum VersionedResourceCardinality extends Enum<VersionedResourceCardinality>
| Enum Constant and Description |
|---|
MULTIPLE
One or more resources may be supplied, as a comma-separated list
|
SINGLE
Exactly one resource must be specified
|
| Modifier and Type | Method and Description |
|---|---|
static VersionedResourceCardinality |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VersionedResourceCardinality[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VersionedResourceCardinality SINGLE
public static final VersionedResourceCardinality MULTIPLE
public static VersionedResourceCardinality[] values()
for (VersionedResourceCardinality c : VersionedResourceCardinality.values()) System.out.println(c);
public static VersionedResourceCardinality 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 © 2022 Apache NiFi Project. All rights reserved.