public static enum Bundle.TrackingType extends Enum<Bundle.TrackingType>
| Enum Constant and Description |
|---|
ELECTRONICS |
LP_CLOTHES |
LP_LINENS |
NOT_TRACKED |
OTP |
PERFUMERY |
SHOES |
TIRES |
TOBACCO |
| Modifier and Type | Method and Description |
|---|---|
static Bundle.TrackingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Bundle.TrackingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Bundle.TrackingType NOT_TRACKED
public static final Bundle.TrackingType TOBACCO
public static final Bundle.TrackingType SHOES
public static final Bundle.TrackingType LP_CLOTHES
public static final Bundle.TrackingType LP_LINENS
public static final Bundle.TrackingType PERFUMERY
public static final Bundle.TrackingType ELECTRONICS
public static final Bundle.TrackingType TIRES
public static final Bundle.TrackingType OTP
public static Bundle.TrackingType[] values()
for (Bundle.TrackingType c : Bundle.TrackingType.values()) System.out.println(c);
public static Bundle.TrackingType 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 nullCopyright © 2022. All rights reserved.