Package com.onslip360
Enum API.UsageEntry.Type
- java.lang.Object
-
- java.lang.Enum<API.UsageEntry.Type>
-
- com.onslip360.API.UsageEntry.Type
-
- All Implemented Interfaces:
Serializable
,Comparable<API.UsageEntry.Type>
- Enclosing class:
- API.UsageEntry
public static enum API.UsageEntry.Type extends Enum<API.UsageEntry.Type>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static API.UsageEntry.Type
valueOf(String name)
Returns the enum constant of this type with the specified name.static API.UsageEntry.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CASHIER_LOGIN_ONLINE
public static final API.UsageEntry.Type CASHIER_LOGIN_ONLINE
-
CASHIER_LOGIN_OFFLINE
public static final API.UsageEntry.Type CASHIER_LOGIN_OFFLINE
-
CASHIER_LOGOUT
public static final API.UsageEntry.Type CASHIER_LOGOUT
-
CASHIER_LOCK
public static final API.UsageEntry.Type CASHIER_LOCK
-
CASHIER_UNLOCK
public static final API.UsageEntry.Type CASHIER_UNLOCK
-
TAB_SUSPEND
public static final API.UsageEntry.Type TAB_SUSPEND
-
TAB_RESUME
public static final API.UsageEntry.Type TAB_RESUME
-
TAB_CLOSE
public static final API.UsageEntry.Type TAB_CLOSE
-
TAB_MERGE
public static final API.UsageEntry.Type TAB_MERGE
-
ERP_INVOICE_CREATE
public static final API.UsageEntry.Type ERP_INVOICE_CREATE
-
ERP_INVOICE_CANCEL
public static final API.UsageEntry.Type ERP_INVOICE_CANCEL
-
ERP_INVOICE_DELIVER
public static final API.UsageEntry.Type ERP_INVOICE_DELIVER
-
VOUCHER_CREATE
public static final API.UsageEntry.Type VOUCHER_CREATE
-
VOUCHER_UPDATE
public static final API.UsageEntry.Type VOUCHER_UPDATE
-
VOUCHER_TRANSACTION
public static final API.UsageEntry.Type VOUCHER_TRANSACTION
-
VOUCHER_DELETE
public static final API.UsageEntry.Type VOUCHER_DELETE
-
PRODUCT_CREATE
public static final API.UsageEntry.Type PRODUCT_CREATE
-
PRODUCT_UPDATE
public static final API.UsageEntry.Type PRODUCT_UPDATE
-
PRODUCT_DELETE
public static final API.UsageEntry.Type PRODUCT_DELETE
-
PRODUCT_GROUP_CREATE
public static final API.UsageEntry.Type PRODUCT_GROUP_CREATE
-
PRODUCT_GROUP_UPDATE
public static final API.UsageEntry.Type PRODUCT_GROUP_UPDATE
-
PRODUCT_GROUP_DELETE
public static final API.UsageEntry.Type PRODUCT_GROUP_DELETE
-
INVENTORY_ADJUSTMENT_CREATE
public static final API.UsageEntry.Type INVENTORY_ADJUSTMENT_CREATE
-
INVENTORY_ADJUSTMENT_UPDATE
public static final API.UsageEntry.Type INVENTORY_ADJUSTMENT_UPDATE
-
INVENTORY_ADJUSTMENT_DELETE
public static final API.UsageEntry.Type INVENTORY_ADJUSTMENT_DELETE
-
STOCK_BALANCE_TRANSACTION
public static final API.UsageEntry.Type STOCK_BALANCE_TRANSACTION
-
PASSWORD_RESET_CHALLENGE
public static final API.UsageEntry.Type PASSWORD_RESET_CHALLENGE
-
PASSWORD_RESET
public static final API.UsageEntry.Type PASSWORD_RESET
-
SHIFT_HISTORY
public static final API.UsageEntry.Type SHIFT_HISTORY
-
__
public static final API.UsageEntry.Type __
-
-
Method Detail
-
values
public static API.UsageEntry.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (API.UsageEntry.Type c : API.UsageEntry.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static API.UsageEntry.Type valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-