public static enum CookieConsent.Position extends Enum<CookieConsent.Position>
Enum Constant and Description |
---|
BOTTOM |
BOTTOM_LEFT |
BOTTOM_RIGHT |
TOP |
TOP_LEFT |
TOP_RIGHT |
Modifier and Type | Method and Description |
---|---|
static CookieConsent.Position |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CookieConsent.Position[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CookieConsent.Position TOP
public static final CookieConsent.Position BOTTOM
public static final CookieConsent.Position TOP_LEFT
public static final CookieConsent.Position TOP_RIGHT
public static final CookieConsent.Position BOTTOM_LEFT
public static final CookieConsent.Position BOTTOM_RIGHT
public static CookieConsent.Position[] values()
for (CookieConsent.Position c : CookieConsent.Position.values()) System.out.println(c);
public static CookieConsent.Position 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 © 2021. All rights reserved.