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