Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getDeclaredAnnotation (0.12 sec)

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

        return annotations.toArray(new Annotation[0]);
      }
    
      /**
       * @since 18.0
       */
      @Override
      @CheckForNull
      public <A extends Annotation> A getDeclaredAnnotation(Class<A> annotationType) {
        checkNotNull(annotationType);
        return FluentIterable.from(annotations).filter(annotationType).first().orNull();
      }
    
      /**
       * @since 18.0
       */
      @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)
Back to top