com.vladsch.flexmark.util.dependency.DependentItemMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of driver-cql-shaded Show documentation
Show all versions of driver-cql-shaded Show documentation
A Shaded CQL ActivityType driver for http://nosqlbench.io/
package com.vladsch.flexmark.util.dependency;
import com.vladsch.flexmark.util.collection.CollectionHost;
import com.vladsch.flexmark.util.collection.OrderedMap;
public class DependentItemMap extends OrderedMap, DependentItem> {
public DependentItemMap() {
}
public DependentItemMap(int capacity) {
super(capacity);
}
public DependentItemMap(CollectionHost> host) {
super(host);
}
public DependentItemMap(int capacity, CollectionHost> host) {
super(capacity, host);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy