Example usage for com.google.common.collect ForwardingSortedMap subclass-usage

List of usage examples for com.google.common.collect ForwardingSortedMap subclass-usage

Introduction

In this page you can find the example usage for com.google.common.collect ForwardingSortedMap subclass-usage.

Usage

From source file com.google.devtools.build.lib.sandbox.MountMap.java

/**
 * A map that throws an exception when trying to replace a key (i.e. once a key gets a value,
 * any additional attempt of putting a value on the same key will throw an exception).
 *
 * <p>Returns entries sorted by path depth (shorter paths first) and in lexicographical order.
 */

From source file de.cosmocode.rendering.SortedMapping.java

/**
 * {@link Mapping} implementation based on a {@link SortedMap} which assumes the underlying
 * map using a hierarchy based sorting as provided by {@link Reflection#orderByHierarchy()}.
 *
 * @deprecated use {@link SuperClassMapping}
 * @since 1.1

From source file iterator.util.Config.java

/**
 * Configuration {@link Map}.
 * <p>
 * Global cobfiguration values for use in preferences dialog.
 */
public class Config extends ForwardingSortedMap<String, String> {