|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<FutureFeature>
org.python.core.FutureFeature
public enum FutureFeature
Nested Class Summary |
---|
Nested classes/interfaces inherited from interface org.python.core.Pragma |
---|
Pragma.ForbiddenPragmaModule, Pragma.PragmaModule |
Enum Constant Summary | |
---|---|
absolute_import
Enables absolute imports. |
|
braces
Use braces for block delimiters instead of indentation. |
|
division
Makes integer / integer division return float. |
|
generators
Enables generators. |
|
GIL
Enable the Global Interpreter Lock in Jython. |
|
global_interpreter_lock
Enable the Global Interpreter Lock in Jython. |
|
nested_scopes
Enables nested scopes. |
|
with_statement
Enables the with statement. |
Field Summary | |
---|---|
static String |
MODULE_NAME
|
static Pragma.PragmaModule |
PRAGMA_MODULE
|
Method Summary | |
---|---|
static void |
addFeature(String featureName,
PragmaReceiver features)
|
void |
addTo(PragmaReceiver features)
|
void |
setFlag(CompilerFlags cflags)
|
static FutureFeature |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static FutureFeature[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final FutureFeature nested_scopes
public static final FutureFeature division
public static final FutureFeature generators
public static final FutureFeature absolute_import
public static final FutureFeature with_statement
public static final FutureFeature braces
public static final FutureFeature GIL
public static final FutureFeature global_interpreter_lock
Field Detail |
---|
public static final String MODULE_NAME
public static final Pragma.PragmaModule PRAGMA_MODULE
Method Detail |
---|
public static FutureFeature[] values()
for (FutureFeature c : FutureFeature.values()) System.out.println(c);
public static FutureFeature valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic void addTo(PragmaReceiver features)
addTo
in interface Pragma
public static void addFeature(String featureName, PragmaReceiver features)
public void setFlag(CompilerFlags cflags)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |