Example usage for org.apache.commons.collections4.map Flat3Map Flat3Map

List of usage examples for org.apache.commons.collections4.map Flat3Map Flat3Map

Introduction

In this page you can find the example usage for org.apache.commons.collections4.map Flat3Map Flat3Map.

Prototype

public Flat3Map() 

Source Link

Document

Constructor.

Usage

From source file:com.link_intersystems.lang.reflect.Class2.java

@SuppressWarnings("unchecked")
private Map<String, TypeVariable<?>> getTypeVariableCache() {
    synchronized (TYPE_VARIABLE_CACHE_SYNCHRONIZATION) {
        if (typeVariableCache == null) {
            typeVariableCache = new Flat3Map();
        }//from w  w  w . j  a  v a2  s  .c om
        return typeVariableCache;
    }
}