org.polkadot.direct.IModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of polkadot-java Show documentation
Show all versions of polkadot-java Show documentation
Java Polkadot API, this is a clone of https://github.com/polkadot-java/api
The newest version!
package org.polkadot.direct;
import java.util.Set;
public interface IModule {
S section(String section);
Set sectionNames();
default void addSection(String sectionName, S section) {
}
}