Enum ProductType

    • Enum Constant Detail

      • ITEM

        public static final ProductType ITEM
        Represents an in-game item.
      • PRIVILEGE

        public static final ProductType PRIVILEGE
        Represents a privilege (permissions group).
      • CURRENCY

        public static final ProductType CURRENCY
        Represents a virtual currency.
      • CASE

        public static final ProductType CASE
        Represents a roulette (one of items with custom chance).
      • OTHER

        public static final ProductType OTHER
        Represents a product without category.
      • UNKNOWN

        public static final ProductType UNKNOWN
        Represents a product type that isn't known yet.
    • Method Detail

      • values

        public static ProductType[] 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 (ProductType c : ProductType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ProductType 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 name
        NullPointerException - if the argument is null
      • getByKey

        @NotNull
        public static @NotNull ProductType getByKey​(@Nullable
                                                    @Nullable String key)
        Get the enum constant by the known product type key (can be null).
        If the key is null/empty or relevant enum constant with this key will not be found then this method will return UNKNOWN constant as default.
        Parameters:
        key - the product type key to find an enum constant.
        Returns:
        The found product type enum constant or UNKNOWN by default.