net.md_5.bungee.util.CaseInsensitiveMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bungeecord-api Show documentation
Show all versions of bungeecord-api Show documentation
API implemented by the Elastic Portal Suite
package net.md_5.bungee.util;
import gnu.trove.map.hash.TCustomHashMap;
import java.util.Map;
public class CaseInsensitiveMap extends TCustomHashMap
{
public CaseInsensitiveMap()
{
super( CaseInsensitiveHashingStrategy.INSTANCE );
}
public CaseInsensitiveMap(Map extends String, ? extends V> map)
{
super( CaseInsensitiveHashingStrategy.INSTANCE, map );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy