- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getDeclaringInvokable (0.27 sec)
-
guava/src/com/google/common/reflect/Parameter.java
} /** Returns the type of the parameter. */ public TypeToken<?> getType() { return type; } /** Returns the {@link Invokable} that declares this parameter. */ public Invokable<?, ?> getDeclaringInvokable() { return declaration; } @Override public boolean isAnnotationPresent(Class<? extends Annotation> annotationType) { return getAnnotation(annotationType) != null; } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Nov 16 15:12:31 UTC 2023 - 4.6K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/ClassSanityTester.java
public ParameterNotInstantiableException(Parameter parameter) { super( "Cannot determine value for parameter " + parameter + " of " + parameter.getDeclaringInvokable()); } } /** * Thrown if the test fails to generate two distinct non-null values of a constructor or factory
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 23 14:18:12 UTC 2024 - 32.7K bytes - Viewed (0)