public static enum Bundle.TrackingType extends Enum<Bundle.TrackingType>
| Enum Constant and Description |
|---|
ELECTRONICS |
FOOD_SUPPLEMENT |
LP_CLOTHES |
LP_LINENS |
MEDICAL_DEVICES |
MILK |
NCP |
NOT_TRACKED |
OTP |
PERFUMERY |
SANITIZER |
SHOES |
SOFT_DRINKS |
TIRES |
TOBACCO |
WATER |
| 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 final Bundle.TrackingType MILK
public static final Bundle.TrackingType WATER
public static final Bundle.TrackingType NCP
public static final Bundle.TrackingType FOOD_SUPPLEMENT
public static final Bundle.TrackingType SANITIZER
public static final Bundle.TrackingType MEDICAL_DEVICES
public static final Bundle.TrackingType SOFT_DRINKS
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 © 2024. All rights reserved.