public static enum CookieHeaderNames.SameSite extends Enum<CookieHeaderNames.SameSite>
Modifier and Type | Method and Description |
---|---|
static CookieHeaderNames.SameSite |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CookieHeaderNames.SameSite[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CookieHeaderNames.SameSite Lax
public static final CookieHeaderNames.SameSite Strict
public static final CookieHeaderNames.SameSite None
public static CookieHeaderNames.SameSite[] values()
for (CookieHeaderNames.SameSite c : CookieHeaderNames.SameSite.values()) System.out.println(c);
public static CookieHeaderNames.SameSite 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 © 2008–2024 The Netty Project. All rights reserved.