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

chapi.ast.antlr.PythonVersion Maven / Gradle / Ivy

Go to download

Chapi is A common language meta information convertor, convert different languages to same meta-data model

The newest version!
package chapi.ast.antlr;

public enum PythonVersion {
    Autodetect(0),
    Python2(2),
    Python3(3);

    private final int value;

    PythonVersion(int value) {
        this.value = value;
    }

    public int getValue() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy