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