Enum MethodDelegationBinder.BindingResolver.Default

    • Field Detail

      • ONLY

        private static final int ONLY
        Represents the index of the only value of two elements in a list.
        See Also:
        Constant Field Values
      • LEFT

        private static final int LEFT
        Represents the index of the left value of two elements in a list.
        See Also:
        Constant Field Values
      • RIGHT

        private static final int RIGHT
        Represents the index of the right value of two elements in a list.
        See Also:
        Constant Field Values
    • Constructor Detail

      • Default

        private Default()
    • Method Detail

      • values

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

        public static MethodDelegationBinder.BindingResolver.Default valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null