Example usage for org.apache.commons.collections CollectionUtils CollectionUtils

List of usage examples for org.apache.commons.collections CollectionUtils CollectionUtils

Introduction

In this page you can find the example usage for org.apache.commons.collections CollectionUtils CollectionUtils.

Prototype

public CollectionUtils() 

Source Link

Document

CollectionUtils should not normally be instantiated.

Usage

From source file:org.paxml.el.CollectionUtilsFactory.java

@Override
public Object getUtilFunctions(Context context) {
    return new CollectionUtils();
}

From source file:org.paxml.el.UtilFunctions.java

/**
 * Get the apache commons collection utils.
 * //www  .  j  a  va  2  s .  co  m
 * @return the utils object
 */
public static CollectionUtils getCollection() {
    return new CollectionUtils();
}