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