public enum TrackingOption extends Enum<TrackingOption>
Enum Constant and Description |
---|
LOT_NUMBERS |
NONE |
SERIAL_NUMBERS |
Modifier and Type | Method and Description |
---|---|
static TrackingOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TrackingOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TrackingOption NONE
public static final TrackingOption SERIAL_NUMBERS
public static final TrackingOption LOT_NUMBERS
public static TrackingOption[] values()
for (TrackingOption c : TrackingOption.values()) System.out.println(c);
public static TrackingOption 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.