Enum AccountIdEndpointMode

    • Enum Constant Detail

      • PREFERRED

        public static final AccountIdEndpointMode PREFERRED
        Default value that indicates account ID values will be used in endpoint rules if available.
      • DISABLED

        public static final AccountIdEndpointMode DISABLED
        When mode is disabled, any resolved account ID will not be used in endpoint construction and rules that reference them will be bypassed.
      • REQUIRED

        public static final AccountIdEndpointMode REQUIRED
        Required mode would be used in scenarios where endpoint resolution should return an error if no account ID is available.
    • Method Detail

      • values

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

        public static AccountIdEndpointMode 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
      • fromValue

        public static AccountIdEndpointMode fromValue​(String s)
        Returns the appropriate AccountIdEndpointMode value after parsing the parameter.
        Parameters:
        s - AccountIdEndpointMode in String Format.
        Returns:
        AccountIdEndpointMode enumValue
        Throws:
        IllegalArgumentException - Unrecognized value for endpoint mode.