Enum ShopPriceType
- All Implemented Interfaces:
Serializable, Comparable<ShopPriceType>, java.lang.constant.Constable
Represents the form of a price that is being taken.
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionRepresents an ItemStack (ItemShopPrice)Represents aDropType(SpawnerItemShopPrice) -
Method Summary
Modifier and TypeMethodDescriptionstatic @Nullable ShopPriceTypeTries to look up for a price 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 ShopPriceTypeReturns the enum constant of this type with the specified name.static ShopPriceType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ITEM
Represents an ItemStack (ItemShopPrice) -
SPAWNER_ITEM
Represents aDropType(SpawnerItemShopPrice)
-
-
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 price type
-
getById
Tries to look up for a price type with a specific id.- Parameters:
id- The id that we want to match- Returns:
- The given price.
nullif we couldn't match any
-