Enum Product.TrackingType
- java.lang.Object
-
- java.lang.Enum<Product.TrackingType>
-
- ru.moysklad.remap_1_2.entities.products.Product.TrackingType
-
- All Implemented Interfaces:
Serializable,Comparable<Product.TrackingType>
- Enclosing class:
- Product
public static enum Product.TrackingType extends Enum<Product.TrackingType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BEER_ALCOHOLBICYCLEELECTRONICSFOOD_SUPPLEMENTLP_CLOTHESLP_LINENSMEDICAL_DEVICESMILKNABEERNCPNOT_TRACKEDOTPPERFUMERYSANITIZERSEAFOODSHOESSOFT_DRINKSTIRESTOBACCOVETPHARMAWATER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Product.TrackingTypevalueOf(String name)Returns the enum constant of this type with the specified name.static Product.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 Product.TrackingType NOT_TRACKED
-
TOBACCO
public static final Product.TrackingType TOBACCO
-
SHOES
public static final Product.TrackingType SHOES
-
LP_CLOTHES
public static final Product.TrackingType LP_CLOTHES
-
LP_LINENS
public static final Product.TrackingType LP_LINENS
-
PERFUMERY
public static final Product.TrackingType PERFUMERY
-
ELECTRONICS
public static final Product.TrackingType ELECTRONICS
-
TIRES
public static final Product.TrackingType TIRES
-
OTP
public static final Product.TrackingType OTP
-
MILK
public static final Product.TrackingType MILK
-
WATER
public static final Product.TrackingType WATER
-
NCP
public static final Product.TrackingType NCP
-
BEER_ALCOHOL
public static final Product.TrackingType BEER_ALCOHOL
-
FOOD_SUPPLEMENT
public static final Product.TrackingType FOOD_SUPPLEMENT
-
SANITIZER
public static final Product.TrackingType SANITIZER
-
MEDICAL_DEVICES
public static final Product.TrackingType MEDICAL_DEVICES
-
SOFT_DRINKS
public static final Product.TrackingType SOFT_DRINKS
-
VETPHARMA
public static final Product.TrackingType VETPHARMA
-
SEAFOOD
public static final Product.TrackingType SEAFOOD
-
BICYCLE
public static final Product.TrackingType BICYCLE
-
NABEER
public static final Product.TrackingType NABEER
-
-
Method Detail
-
values
public static Product.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 (Product.TrackingType c : Product.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 Product.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
-
-