Enum Site.HttpMethod

  • All Implemented Interfaces:
    Serializable, Comparable<Site.HttpMethod>
    Enclosing class:
    Site

    public static enum Site.HttpMethod
    extends Enum<Site.HttpMethod>
    Nested enum for the Http-methods supported by the bot lists.

    Depending on what Http-Methods a bot list supports can its corresponding entry be used for the GET methods, POST methods or both.

    • Enum Constant Detail

      • GET

        public static final Site.HttpMethod GET
        Bot list supports GET requests.
      • POST

        public static final Site.HttpMethod POST
        Bot list supports POST requests.
    • Method Detail

      • values

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

        public static Site.HttpMethod 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