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