public enum TotalDetailsType extends Enum<TotalDetailsType>
Java class for TotalDetailsType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="TotalDetailsType">
<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 TotalDetailsType |
fromValue(String v)
From value total details type.
|
String |
value()
Value string.
|
static TotalDetailsType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TotalDetailsType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TotalDetailsType POIID
public static final TotalDetailsType SALE_ID
public static final TotalDetailsType OPERATOR_ID
public static final TotalDetailsType SHIFT_NUMBER
public static final TotalDetailsType TOTALS_GROUP_ID
public static TotalDetailsType[] values()
for (TotalDetailsType c : TotalDetailsType.values()) System.out.println(c);
public static TotalDetailsType 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 TotalDetailsType fromValue(String v)
v - the vCopyright © 2022. All rights reserved.