Enum Port.Security

    • Enum Constant Detail

      • SECURE

        public static final Port.Security SECURE
        Secure; HTTPS.
      • NOT_SECURE

        public static final Port.Security NOT_SECURE
        Not secure; HTTP.
    • Method Detail

      • values

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

        public static Port.Security 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
      • fromScheme

        public static Port.Security fromScheme​(String schemeToCheck)
        Return Port.Security value for the given scheme, using a case-insensitive comparison. If given some value other than HTTP or HTTPS, returns SECURE.
        Parameters:
        schemeToCheck - either HTTP or HTTPS, case-insensitive
        Returns:
        the Port.Security value