Enum ShopProductType
- All Implemented Interfaces:
Serializable, Comparable<ShopProductType>, java.lang.constant.Constable
Represents the form of a product that is being given.
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionRepresents a command that will be executed on purchaseRepresents a (basic) ItemStackRepresents aDropTypeRepresents aSpecialItem -
Method Summary
Modifier and TypeMethodDescriptionstatic @Nullable ShopProductTypeTries to look up for a product type with a specific id.getId()Returns the id of this type that is being used to identify it in e.g. the shop config file.static ShopProductTypeReturns the enum constant of this type with the specified name.static ShopProductType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ITEM
Represents a (basic) ItemStack -
SPECIAL_ITEM
Represents aSpecialItem -
SPAWNER_ITEM
Represents aDropType -
COMMAND
Represents a command that will be executed on purchase
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
getId
Returns the id of this type that is being used to identify it in e.g. the shop config file.- Returns:
- The of this product type
-
getById
Tries to look up for a product type with a specific id.- Parameters:
id- The id that we want to match- Returns:
- The given product.
nullif we couldn't match any
-