All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.spun.util.MapBuilder Maven / Gradle / Ivy

There is a newer version: 24.9.0
Show newest version
package com.spun.util;

import java.util.HashMap;

public class MapBuilder extends HashMap
{
  private static final long serialVersionUID = 1L;
  public MapBuilder(K key, V value)
  {
    and(key, value);
  }
  public MapBuilder and(K key, V value)
  {
    put(key, value);
    return this;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy