public enum ArchiveStatus extends Enum<ArchiveStatus>
Java class for ArchiveStatus.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ArchiveStatus">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="ARCHIVED"/>
<enumeration value="NOT_ARCHIVED"/>
<enumeration value="PRODUCT_TEMPLATE_ARCHIVED"/>
<enumeration value="UNKNOWN"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ARCHIVED
Product package item is archived
|
NOT_ARCHIVED
Product package item is not archived
|
PRODUCT_TEMPLATE_ARCHIVED
The corresponding product template of this product package item is archived.
|
UNKNOWN
The value returned if the actual value is not exposed by the requested API version.
|
| Modifier and Type | Method and Description |
|---|---|
static ArchiveStatus |
fromValue(String v) |
String |
value() |
static ArchiveStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ArchiveStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArchiveStatus ARCHIVED
public static final ArchiveStatus NOT_ARCHIVED
public static final ArchiveStatus PRODUCT_TEMPLATE_ARCHIVED
public static final ArchiveStatus UNKNOWN
public static ArchiveStatus[] values()
for (ArchiveStatus c : ArchiveStatus.values()) System.out.println(c);
public static ArchiveStatus 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 ArchiveStatus fromValue(String v)
Copyright © 2018. All Rights Reserved.