mirror of
https://github.com/SimplexDevelopment/Configurations.git
synced 2025-04-03 16:23:13 +00:00
20 lines
445 B
Java
20 lines
445 B
Java
package io.github.simplexdev.configurations.api;
|
|
|
|
import org.jetbrains.annotations.Contract;
|
|
import org.jetbrains.annotations.NotNull;
|
|
import org.jetbrains.annotations.Nullable;
|
|
|
|
public interface ISection extends Serializable<ISection> {
|
|
@NotNull
|
|
String getName();
|
|
|
|
@Nullable
|
|
INode<?> getNode(String name);
|
|
|
|
@Contract(pure = true)
|
|
<T> void setNode(String name, T node);
|
|
|
|
@Nullable
|
|
IGroup getGroup(String name);
|
|
}
|