Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getDeclaredAnnotation (0.14 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 Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Jan 18 02:54:30 UTC 2025
    - 4.2K bytes
    - Viewed (0)
Back to top