Package com.onslip360
Enum API.ReportAction.Template
- java.lang.Object
-
- java.lang.Enum<API.ReportAction.Template>
-
- com.onslip360.API.ReportAction.Template
-
- All Implemented Interfaces:
Serializable
,Comparable<API.ReportAction.Template>
- Enclosing class:
- API.ReportAction
public static enum API.ReportAction.Template extends Enum<API.ReportAction.Template>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description __
CREDIT_SALES
SALES
SHIFTS
STOCK_BALANCES
VOUCHERS
Z_REPORT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static API.ReportAction.Template
valueOf(String name)
Returns the enum constant of this type with the specified name.static API.ReportAction.Template[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SALES
public static final API.ReportAction.Template SALES
-
CREDIT_SALES
public static final API.ReportAction.Template CREDIT_SALES
-
SHIFTS
public static final API.ReportAction.Template SHIFTS
-
STOCK_BALANCES
public static final API.ReportAction.Template STOCK_BALANCES
-
VOUCHERS
public static final API.ReportAction.Template VOUCHERS
-
Z_REPORT
public static final API.ReportAction.Template Z_REPORT
-
__
public static final API.ReportAction.Template __
-
-
Method Detail
-
values
public static API.ReportAction.Template[] 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.ReportAction.Template c : API.ReportAction.Template.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.ReportAction.Template 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
-
-