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