Example usage for org.apache.commons.collections15.bidimap UnmodifiableBidiMap decorate

List of usage examples for org.apache.commons.collections15.bidimap UnmodifiableBidiMap decorate

Introduction

In this page you can find the example usage for org.apache.commons.collections15.bidimap UnmodifiableBidiMap decorate.

Prototype

public static <K, V> BidiMap<K, V> decorate(BidiMap<K, V> map) 

Source Link

Document

Factory method to create an unmodifiable map.

Usage

From source file:org.drugis.mtc.model.NetworkBuilder.java

public BidiMap<TreatmentType, Treatment> getTreatmentMap() {
    return UnmodifiableBidiMap.decorate(d_treatmentMap);
}