public enum LandingPageType extends Enum<LandingPageType>
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
static LandingPageType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LandingPageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LandingPageType LOGIN
public static final LandingPageType SIGN_UP
public static LandingPageType[] values()
for (LandingPageType c : LandingPageType.values()) System.out.println(c);
public static LandingPageType 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 getValue()
Copyright © 2022. All rights reserved.