Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getDeclaredAnnotation (0.66 sec)

  1. android/guava/src/com/google/common/reflect/Parameter.java

      public Annotation[] getDeclaredAnnotations() {
        return annotations.toArray(new Annotation[0]);
      }
    
      /**
       * @since 18.0
       */
      @Override
      public <A extends Annotation> @Nullable A getDeclaredAnnotation(Class<A> annotationType) {
        checkNotNull(annotationType);
        return FluentIterable.from(annotations).filter(annotationType).first().orNull();
      }
    
      /**
       * @since 18.0
       */
      @Override
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Sat Jan 18 02:54:30 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/reflect/Types.java

                || methodName.equals("isAnnotationPresent")
                // Each of these prefixes is shared by a family of methods:
                || methodName.startsWith("getAnnotation")
                || methodName.startsWith("getDeclaredAnnotation")) {
              throw new UnsupportedOperationException(
                  "Annotation methods are not supported on synthetic TypeVariables created during type"
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Oct 31 19:34:24 UTC 2025
    - 24.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/reflect/Types.java

                || methodName.equals("isAnnotationPresent")
                // Each of these prefixes is shared by a family of methods:
                || methodName.startsWith("getAnnotation")
                || methodName.startsWith("getDeclaredAnnotation")) {
              throw new UnsupportedOperationException(
                  "Annotation methods are not supported on synthetic TypeVariables created during type"
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Fri Oct 31 19:34:24 UTC 2025
    - 24.3K bytes
    - Viewed (0)
Back to top