Enum Bundle.TrackingType
- java.lang.Object
-
- java.lang.Enum<Bundle.TrackingType>
-
- ru.moysklad.remap_1_2.entities.products.Bundle.TrackingType
-
- All Implemented Interfaces:
Serializable,Comparable<Bundle.TrackingType>
- Enclosing class:
- Bundle
public static enum Bundle.TrackingType extends Enum<Bundle.TrackingType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BICYCLEELECTRONICSFOOD_SUPPLEMENTLP_CLOTHESLP_LINENSMEDICAL_DEVICESMILKNABEERNCPNOT_TRACKEDOTPPERFUMERYSANITIZERSEAFOODSHOESSOFT_DRINKSTIRESTOBACCOVETPHARMAWATER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Bundle.TrackingTypevalueOf(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.
-
-
-
Enum Constant Detail
-
NOT_TRACKED
public static final Bundle.TrackingType NOT_TRACKED
-
TOBACCO
public static final Bundle.TrackingType TOBACCO
-
SHOES
public static final Bundle.TrackingType SHOES
-
LP_CLOTHES
public static final Bundle.TrackingType LP_CLOTHES
-
LP_LINENS
public static final Bundle.TrackingType LP_LINENS
-
PERFUMERY
public static final Bundle.TrackingType PERFUMERY
-
ELECTRONICS
public static final Bundle.TrackingType ELECTRONICS
-
TIRES
public static final Bundle.TrackingType TIRES
-
OTP
public static final Bundle.TrackingType OTP
-
MILK
public static final Bundle.TrackingType MILK
-
WATER
public static final Bundle.TrackingType WATER
-
NCP
public static final Bundle.TrackingType NCP
-
FOOD_SUPPLEMENT
public static final Bundle.TrackingType FOOD_SUPPLEMENT
-
SANITIZER
public static final Bundle.TrackingType SANITIZER
-
MEDICAL_DEVICES
public static final Bundle.TrackingType MEDICAL_DEVICES
-
SOFT_DRINKS
public static final Bundle.TrackingType SOFT_DRINKS
-
VETPHARMA
public static final Bundle.TrackingType VETPHARMA
-
SEAFOOD
public static final Bundle.TrackingType SEAFOOD
-
BICYCLE
public static final Bundle.TrackingType BICYCLE
-
NABEER
public static final Bundle.TrackingType NABEER
-
-
Method Detail
-
values
public static Bundle.TrackingType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Bundle.TrackingType c : Bundle.TrackingType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Bundle.TrackingType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-