public enum UofMSalesAvailable extends Enum<UofMSalesAvailable>
Enum Constant and Description |
---|
UNIT_OF_MEASURE_MUST_BE_SOLD_IN_WHOLE_AND_FRACTIONAL_QUANTITIES |
UNIT_OF_MEASURE_MUST_BE_SOLD_IN_WHOLE_QUANTITIES |
UNIT_OF_MEASURE_NOT_AVAILABLE_FOR_SALES_PURPOSES |
Modifier and Type | Method and Description |
---|---|
static UofMSalesAvailable |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UofMSalesAvailable[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UofMSalesAvailable UNIT_OF_MEASURE_NOT_AVAILABLE_FOR_SALES_PURPOSES
public static final UofMSalesAvailable UNIT_OF_MEASURE_MUST_BE_SOLD_IN_WHOLE_QUANTITIES
public static final UofMSalesAvailable UNIT_OF_MEASURE_MUST_BE_SOLD_IN_WHOLE_AND_FRACTIONAL_QUANTITIES
public static UofMSalesAvailable[] values()
for (UofMSalesAvailable c : UofMSalesAvailable.values()) System.out.println(c);
public static UofMSalesAvailable 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 © 2010–2016. All rights reserved.