Enum Class PurchaseError
- All Implemented Interfaces:
Serializable
,Comparable<PurchaseError>
,Constable
Represents possible errors that can occur during a purchase event.
These values allow shop systems to communicate the exact reason
why a purchase request failed, or NONE
if successful.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Method Summary
Modifier and TypeMethodDescriptionstatic PurchaseError
fromCode
(int code) Creates PurchaseError from a integer error codeint
getCode()
Returns the code associated with a PurchaseErrorstatic PurchaseError
Returns the enum constant of this class with the specified name.static PurchaseError[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NONE
-
NOT_FOUND
-
DISABLED
-
INSUFFICIENT_FUNDS
-
INVENTORY_FULL
-
LIMIT_REACHED
-
INVALID_ITEM
-
UNEXPECTED
-
INVALID_WEAPON
-
ALREADY_HAVE_LASER
-
ALREADY_HAVE_BULLET
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
getCode
public int getCode()Returns the code associated with a PurchaseError- Returns:
- an integer representing the PurchaseError
-
fromCode
Creates PurchaseError from a integer error code- Parameters:
code
- The code representing the error.- Returns:
- The PurchaseError.
-