All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hecloud.runtime.database.state.machine.SelectStateMachine Maven / Gradle / Ivy

There is a newer version: 1.0.8
Show newest version
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