List of usage examples for java.util TreeMap subclass-usage
From source file CacheMap.java
/** * Utility class for cache map. */ public class CacheMap extends TreeMap<String, Object> { private static final long serialVersionUID = 6681131647931821052L;
From source file kr.co.bitnine.octopus.postgres.utils.misc.PostgresConfiguration.java
public final class PostgresConfiguration extends TreeMap<String, String> { private static final Log LOG = LogFactory.getLog(PostgresConfiguration.class); public static final String PARAM_INTEGER_DATETIMES = "integer_datetimes"; public static final String PARAM_EXTRA_FLOAT_DIGITS = "extra_float_digits"; public static final String PARAM_DATESTYLE = "DateStyle";
From source file org.apache.taverna.scufl2.api.impl.LazyMap.java
/**
* A lazy TreeMap, inspired by org.apache.commons.collections.map.LazyMap
* <p>
* On {@link #get(Object)}, if a key is not found in the map,
* {@link #getDefault(Object)} will be called to create the value for the given
* key. This value is subsequently inserted into the map before being returned.
From source file BoundedSortedMap.java
/**
* A {@code Map} implementation that grows to a fixed size and then retains only
* a fixed number of the highest (largest) keys. All keys used in this class
* must implements {@link Comparable}.
*
* @see BoundedSortedMultiMap
From source file org.jumpmind.symmetric.statistic.AbstractStatsByPeriodMap.java
abstract public class AbstractStatsByPeriodMap<T, M extends AbstractNodeHostStats> extends TreeMap<Date, T> { private static final long serialVersionUID = 1L; public AbstractStatsByPeriodMap(Date start, Date end, List<M> list, int periodSizeInMinutes) { Iterator<M> stats = list.iterator();
From source file com.addthis.bundle.util.map.MapBundle.java
@VisibleForTesting public class MapBundle extends TreeMap<String, String> implements Bundle, BundleFormat { public MapBundle() { super(); }
From source file org.diorite.utils.collections.maps.ByValueSortingTreeMap.java
/**
* TreeMap sorted by values instead of keys.
*
* @param <K> key type.
* @param <V> value type.
*
From source file sf.net.experimaestro.manager.json.JsonObject.java
/** * A JSON object (associates a key to a json value) * * @author B. Piwowarski <benjamin@bpiwowar.net> */ public class JsonObject
From source file org.codehaus.mojo.license.LicenseMap.java
/**
* Map of artifacts (stub in mavenproject) group by their license.
*
* @author tchemit <chemit@codelutin.com>
* @since 1.0
*/
From source file hudson.EnvVars.java
/**
* Environment variables.
*
* <p>
* While all the platforms I tested (Linux 2.6, Solaris, and Windows XP) have the case sensitive
* environment variable table, Windows batch script handles environment variable in the case preserving