本文整理汇总了Java中groovy.lang.MetaMethod.correctArguments方法的典型用法代码示例。如果您正苦于以下问题:Java MetaMethod.correctArguments方法的具体用法?Java MetaMethod.correctArguments怎么用?Java MetaMethod.correctArguments使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类groovy.lang.MetaMethod
的用法示例。
在下文中一共展示了MetaMethod.correctArguments方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createStaticMetaMethodSite
import groovy.lang.MetaMethod; //导入方法依赖的package包/类
public static CallSite createStaticMetaMethodSite(CallSite site, MetaClassImpl metaClass, MetaMethod metaMethod, Class[] params, Object[] args) {
if (metaMethod.correctArguments(args) == args) {
if (noWrappers(args)) {
if (noCoerce(metaMethod,args))
return new StaticMetaMethodSiteNoUnwrap(site, metaClass, metaMethod, params);
else
if (metaMethod.getClass() == CachedMethod.class)
return ((CachedMethod)metaMethod).createStaticMetaMethodSite(site, metaClass, params);
else
return new StaticMetaMethodSiteNoUnwrapNoCoerce (site, metaClass, metaMethod, params);
}
}
return new StaticMetaMethodSite(site, metaClass, metaMethod, params);
}
示例2: createNonAwareCallSite
import groovy.lang.MetaMethod; //导入方法依赖的package包/类
public static CallSite createNonAwareCallSite(CallSite site, MetaClassImpl metaClass, MetaMethod metaMethod, Class[] params, Object[] args) {
if (metaMethod.correctArguments(args) == args) {
if (noWrappers(args)) {
if (noCoerce(metaMethod,args))
return new PojoMetaMethodSiteNoUnwrap(site, metaClass, metaMethod, params);
else
return new PojoMetaMethodSiteNoUnwrapNoCoerce(site, metaClass, metaMethod, params);
}
}
return new PojoMetaMethodSite(site, metaClass, metaMethod, params);
}
示例3: createNonAwareCallSite
import groovy.lang.MetaMethod; //导入方法依赖的package包/类
private static CallSite createNonAwareCallSite(CallSite site, MetaClassImpl metaClass, MetaMethod metaMethod, Class[] params, Object[] args) {
if (metaMethod.correctArguments(args) == args) {
if (noWrappers(args)) {
if (noCoerce(metaMethod,args))
return new PogoMetaMethodSiteNoUnwrap(site, metaClass, metaMethod, params);
else {
return new PogoMetaMethodSiteNoUnwrapNoCoerce(site, metaClass, metaMethod, params);
}
}
}
return new PogoMetaMethodSite(site, metaClass, metaMethod, params);
}