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

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

Introduction

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

Prototype

protected ListOrderedMap(final Map<K, V> map) 

Source Link

Document

Constructor that wraps (not copies).

Usage

From source file:com.norconex.importer.handler.transformer.impl.ReplaceTransformer.java

public Map<String, String> getReplacements() {
    return ListOrderedMap.listOrderedMap(replacements);
}