public enum RequestAction extends Enum<RequestAction>
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static RequestAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RequestAction |
valueOfValue(String action) |
static RequestAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RequestAction READ
public static final RequestAction WRITE
private String value
public static RequestAction[] values()
for (RequestAction c : RequestAction.values()) System.out.println(c);
public static RequestAction 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 toString()
toString in class Enum<RequestAction>public static RequestAction valueOfValue(String action)
Copyright © 2016 Apache NiFi Project. All rights reserved.