public enum PriceExtensionType extends Enum<PriceExtensionType>
Java class for PriceExtensionType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="PriceExtensionType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="UNKNOWN"/>
<enumeration value="BRANDS"/>
<enumeration value="EVENTS"/>
<enumeration value="LOCATIONS"/>
<enumeration value="NEIGHBORHOODS"/>
<enumeration value="PRODUCT_CATEGORIES"/>
<enumeration value="PRODUCT_TIERS"/>
<enumeration value="SERVICES"/>
<enumeration value="SERVICE_CATEGORIES"/>
<enumeration value="SERVICE_TIERS"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
BRANDS
The type for showing a list of brands.
|
EVENTS
The type for showing a list of events.
|
LOCATIONS
The type for showing locations relevant to your business.
|
NEIGHBORHOODS
The type for showing sub-regions or districts within a city or region.
|
PRODUCT_CATEGORIES
The type for showing a collection of product categories.
|
PRODUCT_TIERS
The type for showing a collection of related product tiers.
|
SERVICE_CATEGORIES
The type for showing a collection of service categories.
|
SERVICE_TIERS
The type for showing a collection of related service tiers.
|
SERVICES
The type for showing a collection of services offered by your business.
|
UNKNOWN
Used for return value only.
|
| Modifier and Type | Method and Description |
|---|---|
static PriceExtensionType |
fromValue(String v) |
String |
value() |
static PriceExtensionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PriceExtensionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PriceExtensionType UNKNOWN
public static final PriceExtensionType BRANDS
public static final PriceExtensionType EVENTS
public static final PriceExtensionType LOCATIONS
public static final PriceExtensionType NEIGHBORHOODS
public static final PriceExtensionType PRODUCT_CATEGORIES
public static final PriceExtensionType PRODUCT_TIERS
public static final PriceExtensionType SERVICES
public static final PriceExtensionType SERVICE_CATEGORIES
public static final PriceExtensionType SERVICE_TIERS
public static PriceExtensionType[] values()
for (PriceExtensionType c : PriceExtensionType.values()) System.out.println(c);
public static PriceExtensionType 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 value()
public static PriceExtensionType fromValue(String v)
Copyright © 2023. All rights reserved.