Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for FactoryMethodReturnsNullException (0.38 seconds)

  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;
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sat Aug 09 01:14:59 GMT 2025
    - 32.5K bytes
    - Click Count (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;
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Apr 02 14:49:41 GMT 2026
    - 32.5K bytes
    - Click Count (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;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 12 17:47:10 GMT 2026
    - 36.3K bytes
    - Click Count (0)
Back to Top