Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for initAnnotatedTypeExists (0.14 sec)

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

                && !Modifier.isStatic(declaringClass.getModifiers());
          }
        }
      }
    
      private static final boolean ANNOTATED_TYPE_EXISTS = initAnnotatedTypeExists();
    
      private static boolean initAnnotatedTypeExists() {
        try {
          Class.forName("java.lang.reflect.AnnotatedType");
        } catch (ClassNotFoundException e) {
          return false;
        }
        return true;
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Dec 14 20:35:03 UTC 2023
    - 19.6K bytes
    - Viewed (0)
Back to top