org.khasanof.state.collector.StateConfigCollector Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fluent-state Show documentation
Show all versions of fluent-state Show documentation
Fluent - Easy Telegram Bots with Spring
The newest version!
package org.khasanof.state.collector;
import org.khasanof.GenericContains;
import org.khasanof.state.StateTransmit;
import java.util.EnumSet;
/**
* @author Nurislom
* @see org.khasanof.state.configurer
* @since 10/7/2023 9:21 PM
*/
public interface StateConfigCollector extends StateTransmit, GenericContains {
void addInitial(Enum initial);
void addStates(EnumSet states);
}