public enum PythonBuiltinFunctions extends Enum<PythonBuiltinFunctions>
| Enum Constant and Description |
|---|
INSTANCE |
| Modifier and Type | Method and Description |
|---|---|
static boolean |
contains(String name) |
static PythonBuiltinFunctions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PythonBuiltinFunctions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PythonBuiltinFunctions INSTANCE
public static PythonBuiltinFunctions[] values()
for (PythonBuiltinFunctions c : PythonBuiltinFunctions.values()) System.out.println(c);
public static PythonBuiltinFunctions valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static boolean contains(String name)
Copyright © 2011–2018 SonarSource and Waleri Enns. All rights reserved.