Uses of Class
com.comphenix.protocol.reflect.MethodInfo
Packages that use MethodInfo
-
Uses of MethodInfo in com.comphenix.protocol.reflect
Methods in com.comphenix.protocol.reflect that return MethodInfoModifier and TypeMethodDescriptionstatic MethodInfoMethodInfo.fromConstructor(Constructor<?> constructor)Wraps a constructor as a method information object.static MethodInfoMethodInfo.fromMethod(Method method)Wraps a method as a MethodInfo object.Methods in com.comphenix.protocol.reflect that return types with arguments of type MethodInfoModifier and TypeMethodDescriptionstatic Collection<MethodInfo>MethodInfo.fromConstructors(Constructor<?>[] constructors)Construct a list of method infos from a given array of constructors.static List<MethodInfo>MethodInfo.fromConstructors(Collection<Constructor<?>> constructors)Construct a list of method infos from a given collection of constructors.static Collection<MethodInfo>MethodInfo.fromMethods(Method[] methods)Construct a list of method infos from a given array of methods.static List<MethodInfo>MethodInfo.fromMethods(Collection<Method> methods)Construct a list of method infos from a given collection of methods.Method parameters in com.comphenix.protocol.reflect with type arguments of type MethodInfoModifier and TypeMethodDescriptionConstructor<?>FuzzyReflection.getConstructor(AbstractFuzzyMatcher<MethodInfo> matcher)Retrieve the first constructor that matches.List<Constructor<?>>FuzzyReflection.getConstructorList(AbstractFuzzyMatcher<MethodInfo> matcher)Retrieve a list of every constructor that matches the given matcher.FuzzyReflection.getMethod(AbstractFuzzyMatcher<MethodInfo> matcher)Retrieve the first method that matches.FuzzyReflection.getMethod(AbstractFuzzyMatcher<MethodInfo> matcher, String preferred)Retrieve a method that matches.FuzzyReflection.getMethodList(AbstractFuzzyMatcher<MethodInfo> matcher)Retrieve a list of every method that matches the given matcher. -
Uses of MethodInfo in com.comphenix.protocol.reflect.fuzzy
Methods in com.comphenix.protocol.reflect.fuzzy that return types with arguments of type MethodInfoModifier and TypeMethodDescriptioncom.google.common.collect.ImmutableList<AbstractFuzzyMatcher<MethodInfo>>FuzzyClassContract.getConstructorContracts()Retrieve an immutable list of every constructor contract.com.google.common.collect.ImmutableList<AbstractFuzzyMatcher<MethodInfo>>FuzzyClassContract.getMethodContracts()Retrieve an immutable list of every method contract.Methods in com.comphenix.protocol.reflect.fuzzy with parameters of type MethodInfoModifier and TypeMethodDescriptionbooleanFuzzyMethodContract.isMatch(MethodInfo value, Object parent)Method parameters in com.comphenix.protocol.reflect.fuzzy with type arguments of type MethodInfoModifier and TypeMethodDescriptionFuzzyClassContract.Builder.constructor(AbstractFuzzyMatcher<MethodInfo> matcher)Add a new constructor contract.FuzzyClassContract.Builder.method(AbstractFuzzyMatcher<MethodInfo> matcher)Add a new method contract.