public static enum PythonType.TypeName extends Enum<PythonType.TypeName>
Enum Constant and Description |
---|
BOOL |
BYTES |
DICT |
FLOAT |
INT |
LIST |
NDARRAY |
STR |
Modifier and Type | Method and Description |
---|---|
static PythonType.TypeName |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PythonType.TypeName[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PythonType.TypeName STR
public static final PythonType.TypeName INT
public static final PythonType.TypeName FLOAT
public static final PythonType.TypeName BOOL
public static final PythonType.TypeName LIST
public static final PythonType.TypeName DICT
public static final PythonType.TypeName NDARRAY
public static final PythonType.TypeName BYTES
public static PythonType.TypeName[] values()
for (PythonType.TypeName c : PythonType.TypeName.values()) System.out.println(c);
public static PythonType.TypeName 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 nullCopyright © 2020. All rights reserved.