Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for FactoryMethodReturnsNullException (1.28 sec)

  1. guava-testlib/src/com/google/common/testing/ClassSanityTester.java

      }
    
      private static <T> T createInstance(Invokable<?, ? extends T> factory, List<?> args)
          throws FactoryMethodReturnsNullException, InvocationTargetException, IllegalAccessException {
        T instance = invoke(factory, args);
        if (instance == null) {
          throw new FactoryMethodReturnsNullException(factory);
        }
        return instance;
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 32.5K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java

      }
    
      private static <T> T createInstance(Invokable<?, ? extends T> factory, List<?> args)
          throws FactoryMethodReturnsNullException, InvocationTargetException, IllegalAccessException {
        T instance = invoke(factory, args);
        if (instance == null) {
          throw new FactoryMethodReturnsNullException(factory);
        }
        return instance;
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 32.5K bytes
    - Viewed (0)
  3. guava-testlib/test/com/google/common/testing/ClassSanityTesterTest.java

    import com.google.common.base.Functions;
    import com.google.common.base.Optional;
    import com.google.common.collect.ImmutableList;
    import com.google.common.testing.ClassSanityTester.FactoryMethodReturnsNullException;
    import com.google.common.testing.ClassSanityTester.ParameterHasNoDistinctValueException;
    import com.google.common.testing.ClassSanityTester.ParameterNotInstantiableException;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 10 19:54:19 UTC 2025
    - 36.2K bytes
    - Viewed (0)
Back to top