Interface ImmutableArgumentConversionContext<T>

    • Method Detail

      • of

        static <T> ImmutableArgumentConversionContext<T> of​(Argument<T> argument)
        Create a new simple ConversionContext for the given generic type variables.

        NOTE: The instance returned by this method is NOT thread safe and should be shared via static state or between threads.

        Type Parameters:
        T - type Generic
        Parameters:
        argument - The argument
        Returns:
        The conversion context
        Since:
        3.2.7
      • of

        static <T> ImmutableArgumentConversionContext<T> of​(java.lang.Class<T> type)
        Create a simple ConversionContext for the given generic type variables.

        NOTE: The instance returned by this method is NOT thread safe and should be shared via static state or between threads.

        Type Parameters:
        T - type Generic
        Parameters:
        type - The argument
        Returns:
        The conversion context
        Since:
        3.2.7