public static enum AuthorizationResult.Result extends Enum<AuthorizationResult.Result>
| Enum Constant and Description |
|---|
Approved |
Denied |
ResourceNotFound |
| Modifier and Type | Method and Description |
|---|---|
static AuthorizationResult.Result |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuthorizationResult.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthorizationResult.Result Approved
public static final AuthorizationResult.Result Denied
public static final AuthorizationResult.Result ResourceNotFound
public static AuthorizationResult.Result[] values()
for (AuthorizationResult.Result c : AuthorizationResult.Result.values()) System.out.println(c);
public static AuthorizationResult.Result 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 © 2016 Apache NiFi Project. All rights reserved.