public enum TotalDetailsEnumeration extends Enum<TotalDetailsEnumeration>
Java class for TotalDetailsEnumeration.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="TotalDetailsEnumeration">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="POIID"/>
<enumeration value="SaleID"/>
<enumeration value="OperatorID"/>
<enumeration value="ShiftNumber"/>
<enumeration value="TotalsGroupID"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
OPERATOR_ID
Give the totals result per OperatorID value.
|
POIID
Give the totals result per POIID value.
|
SALE_ID
Give the totals result per SaleID value.
|
SHIFT_NUMBER
Give the totals result per ShiftNumber value.
|
TOTALS_GROUP_ID
Give the totals result per TotalsGroupID value.
|
| Modifier and Type | Method and Description |
|---|---|
static TotalDetailsEnumeration |
fromValue(String v) |
String |
value() |
static TotalDetailsEnumeration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TotalDetailsEnumeration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TotalDetailsEnumeration POIID
public static final TotalDetailsEnumeration SALE_ID
public static final TotalDetailsEnumeration OPERATOR_ID
public static final TotalDetailsEnumeration SHIFT_NUMBER
public static final TotalDetailsEnumeration TOTALS_GROUP_ID
public static TotalDetailsEnumeration[] values()
for (TotalDetailsEnumeration c : TotalDetailsEnumeration.values()) System.out.println(c);
public static TotalDetailsEnumeration 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 nullpublic String value()
public static TotalDetailsEnumeration fromValue(String v)
Copyright © 2018. All rights reserved.