public enum ShippingStatus2 extends Enum<ShippingStatus2>
| Modifier and Type | Class and Description |
|---|---|
static class |
ShippingStatus2.Adapter |
| Modifier and Type | Method and Description |
|---|---|
static ShippingStatus2 |
fromValue(String value) |
String |
getValue() |
String |
toString() |
static ShippingStatus2 |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ShippingStatus2[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ShippingStatus2 SHIPPED
public static final ShippingStatus2 DELIVERED
public static ShippingStatus2[] values()
for (ShippingStatus2 c : ShippingStatus2.values()) System.out.println(c);
public static ShippingStatus2 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 getValue()
public String toString()
toString in class Enum<ShippingStatus2>public static ShippingStatus2 fromValue(String value)
Copyright © 2023. All rights reserved.