PythonVersion Class

public final class PythonVersion
extends ExpandableStringEnum<PythonVersion>

Defines values for Python version.

Field Summary

Modifier and Type Field and Description
static final PythonVersion OFF

Static value 'Off' for PythonVersion.

static final PythonVersion PYTHON_27

Static value 2.7 for PythonVersion.

static final PythonVersion PYTHON_34

Static value 3.4 for PythonVersion.

Constructor Summary

Constructor Description
PythonVersion()

Method Summary

Modifier and Type Method and Description
static PythonVersion fromString(String name)

Finds or creates a Python version based on the specified name.

static Collection<PythonVersion> values()

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

OFF

public static final PythonVersion OFF

Static value 'Off' for PythonVersion.

PYTHON_27

public static final PythonVersion PYTHON_27

Static value 2.7 for PythonVersion.

PYTHON_34

public static final PythonVersion PYTHON_34

Static value 3.4 for PythonVersion.

Constructor Details

PythonVersion

public PythonVersion()

Method Details

fromString

public static PythonVersion fromString(String name)

Finds or creates a Python version based on the specified name.

Parameters:

name - a name

Returns:

a PythonVersion instance

values

public static Collection values()

Returns:

known Python versions

Applies to