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