Enum PluginType

    • Enum Constant Detail

      • SURCHARGE

        public static final PluginType SURCHARGE
        Represents the EasyDonate Surcharge plugin.
      • LAST_PAYMENTS

        public static final PluginType LAST_PAYMENTS
        Represents the EasyDonate Last Payments plugin.
      • CUSTOM_MESSAGES

        public static final PluginType CUSTOM_MESSAGES
        Represents the EasyDonate Custom Messages plugin.
      • DISCORD_WIDGET

        public static final PluginType DISCORD_WIDGET
        Represents the Discord Widget plugin.
      • VK_NEWS

        public static final PluginType VK_NEWS
        Represents the VKontakte News plugin.
      • VK_COMMUNITY_WIDGET

        public static final PluginType VK_COMMUNITY_WIDGET
        Represents the VKontakte Community Widget plugin.
      • VK_MESSAGES_WIDGET

        public static final PluginType VK_MESSAGES_WIDGET
        Represents the VKontakte Messages Widget plugin.
      • YANDEX_METRIKA

        public static final PluginType YANDEX_METRIKA
        Represents the Yandex.Metrika plugin.
    • Method Detail

      • values

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

        public static PluginType 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
      • getApiName

        @NotNull
        public @NotNull String getApiName()