Uses of Class
jfun.yan.util.AmbiguityException

Packages that use AmbiguityException
jfun.yan.util Some utility classes used by Yan. 
 

Uses of AmbiguityException in jfun.yan.util
 

Methods in jfun.yan.util that throw AmbiguityException
 java.lang.reflect.Method ClassDescriptor.filterMethod(java.lang.String name, MethodPredicate pred)
          Get a public Method with a certain name and satisfies a certain predicate.
 java.lang.reflect.Method ClassDescriptor.filterMethod(java.lang.String name, MethodPredicate pred, boolean suppress_security)
          Get a Method with a certain name and satisfies a certain predicate.
 java.lang.reflect.Constructor<T> ClassDescriptor.getConstructor()
          Get the only one public constructor declared in the type.
 java.lang.reflect.Constructor<T> ClassDescriptor.getConstructor(boolean suppress_security)
          Get the only one constructor declared in the type.
static
<T> java.lang.reflect.Constructor<T>
ReflectionUtil.getConstructor(java.lang.Class<T> c)
          To find the only public constructor in a class.
static
<T> java.lang.reflect.Constructor<T>
ReflectionUtil.getConstructor(java.lang.Class<T> c, int param_count)
          To find the only public constructor with the expected number of formal parameters in the class.
 java.lang.reflect.Constructor<T> ClassDescriptor.getConstructor(int param_count)
          Get the only one public constructor declared in the type.
 java.lang.reflect.Constructor<T> ClassDescriptor.getConstructor(int param_count, boolean suppress_security)
          Get the only one constructor declared in the type.
static java.lang.reflect.Method ReflectionUtil.getInstanceMethod(java.lang.Class c, int param_count, java.lang.String name)
          To find a public instance method in a class.
static java.lang.reflect.Method ReflectionUtil.getInstanceMethod(java.lang.Class c, java.lang.String name)
          To find a public instance method in a class.
 java.lang.reflect.Method ClassDescriptor.getMethod(java.lang.String name)
          Get the public method with a certain name.
 java.lang.reflect.Method ClassDescriptor.getMethod(java.lang.String name, boolean suppress_security)
          Get the method with a certain name.
static java.lang.reflect.Method ReflectionUtil.getStaticMethod(java.lang.Class c, java.lang.String name)
          To find a public static method in a class.
static java.lang.reflect.Method ReflectionUtil.getStaticMethod(java.lang.Class c, java.lang.String name, boolean suppress_security)
          To find a static method in a class.
static java.lang.reflect.Method ReflectionUtil.getStaticMethod(java.lang.Class c, java.lang.String name, int param_count)
          To find a public static method in a class.
static java.lang.reflect.Method ReflectionUtil.getStaticMethod(java.lang.Class c, java.lang.String name, int param_count, boolean suppress_security)
          To find a static method in a class.