PythonVersion Class

public class PythonVersion extends ExpandableStringEnum

Defines values for Python version.

Field Summary

Modifier and Type Field and Description
final PythonVersion OFF

Static value 'Off' for PythonVersion.

final PythonVersion PYTHON_27

Static value 2.7 for PythonVersion.

final PythonVersion PYTHON_34

Static value 3.4 for PythonVersion.

Method Summary

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

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

Collection<PythonVersion> values()

Inherited Members

Field Details

OFF

public static final PythonVersion OFF= PythonVersion.fromString("null")

Static value 'Off' for PythonVersion.

PYTHON_27

public static final PythonVersion PYTHON_27= PythonVersion.fromString("2.7")

Static value 2.7 for PythonVersion.

PYTHON_34

public static final PythonVersion PYTHON_34= PythonVersion.fromString("3.4")

Static value 3.4 for 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