Example usage for org.apache.commons.collections.map FixedSizeMap decorate

List of usage examples for org.apache.commons.collections.map FixedSizeMap decorate

Introduction

In this page you can find the example usage for org.apache.commons.collections.map FixedSizeMap decorate.

Prototype

public static Map decorate(Map map) 

Source Link

Document

Factory method to create a fixed size map.

Usage

From source file:architecture.ee.jdbc.sqlquery.factory.impl.SqlQueryImpl.java

public SqlQuery setAdditionalParameters(Map<String, Object> additionalParameters) {
    this.additionalParameters = FixedSizeMap.decorate(additionalParameters);
    return this;
}