public enum OfflineDataUploadType extends Enum<OfflineDataUploadType>
Java class for OfflineDataUploadType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="OfflineDataUploadType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="UNKNOWN"/>
<enumeration value="STORE_SALES_UPLOAD_FIRST_PARTY"/>
<enumeration value="STORE_SALES_UPLOAD_THIRD_PARTY"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
STORE_SALES_UPLOAD_FIRST_PARTY
Indicates Store Sales Direct Upload for self service.
|
STORE_SALES_UPLOAD_THIRD_PARTY
Indicates Store Sales Direct Upload for third party.
|
UNKNOWN
UNKNOWN value cannot be passed as input.
|
| Modifier and Type | Method and Description |
|---|---|
static OfflineDataUploadType |
fromValue(String v) |
String |
value() |
static OfflineDataUploadType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OfflineDataUploadType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OfflineDataUploadType UNKNOWN
public static final OfflineDataUploadType STORE_SALES_UPLOAD_FIRST_PARTY
public static final OfflineDataUploadType STORE_SALES_UPLOAD_THIRD_PARTY
public static OfflineDataUploadType[] values()
for (OfflineDataUploadType c : OfflineDataUploadType.values()) System.out.println(c);
public static OfflineDataUploadType 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 OfflineDataUploadType fromValue(String v)
Copyright © 2023. All rights reserved.