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

com.greenpepper.shaded.com.vladsch.flexmark.util.collection.IndexedItemSetMap Maven / Gradle / Ivy

package com.greenpepper.shaded.com.vladsch.flexmark.util.collection;

import java.util.Map;

public interface IndexedItemSetMap extends Map {
    M mapKey(K key);

    S newSet();
    boolean addSetItem(S s, int item);
    boolean removeSetItem(S s, int item);
    boolean containsSetItem(S s, int item);

    boolean addItem(K key, int item);
    boolean removeItem(K key, int item);
    boolean containsItem(K key, int item);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy