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

net.md_5.bungee.util.CaseInsensitiveSet Maven / Gradle / Ivy

There is a newer version: 1.20-R0.2
Show newest version
package net.md_5.bungee.util;

import gnu.trove.set.hash.TCustomHashSet;
import java.util.Collection;

public class CaseInsensitiveSet extends TCustomHashSet
{

    public CaseInsensitiveSet()
    {
        super( CaseInsensitiveHashingStrategy.INSTANCE );
    }

    public CaseInsensitiveSet(Collection collection)
    {
        super( CaseInsensitiveHashingStrategy.INSTANCE, collection );
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy