public static enum Product.BIT_MASKS extends Enum<Product.BIT_MASKS> implements BIT_MASKS
Enum Constant and Description |
---|
DISABLED
Product is disabled/suspended or logically deleted but maintained in database for future reference
|
NONE
Product is in default state; no special bit masks apply.
|
Modifier and Type | Method and Description |
---|---|
String |
getDesc() |
Integer |
getValue() |
static Product.BIT_MASKS |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Product.BIT_MASKS[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Product.BIT_MASKS NONE
public static final Product.BIT_MASKS DISABLED
public static Product.BIT_MASKS[] values()
for (Product.BIT_MASKS c : Product.BIT_MASKS.values()) System.out.println(c);
public static Product.BIT_MASKS 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 © 2018. All rights reserved.