com.hecloud.runtime.database.state.machine.SelectStateMachine Maven / Gradle / Ivy
package com.hecloud.runtime.database.state.machine;
import com.google.common.collect.Lists;
import com.hecloud.runtime.database.state.SelectState;
/**
* @author LoveInBJ-1024
* @version 1.0
*/
public class SelectStateMachine extends AbstractStateMachine {
public SelectStateMachine() {
this.setState(SelectState.SELECT);
this.setNext(Lists.newArrayList(SelectState.COLUMN));
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy