public enum ByteCode extends Enum<ByteCode> implements CodeGeneratorOption
| Modifier and Type | Field and Description |
|---|---|
static CodeGenerationStrategy<?> |
BYTECODE |
static CodeGeneratorOption |
VERIFY_GENERATED_BYTECODE |
BLANK_OPTION, PRINT_DISASSEMBLY| Modifier and Type | Method and Description |
|---|---|
void |
applyTo(Object target) |
static ByteCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ByteCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CodeGenerationStrategy<?> BYTECODE
public static final CodeGeneratorOption VERIFY_GENERATED_BYTECODE
public static ByteCode[] values()
for (ByteCode c : ByteCode.values()) System.out.println(c);
public static ByteCode 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 void applyTo(Object target)
applyTo in interface CodeGeneratorOptionCopyright © 2002–2017 The Neo4j Graph Database Project. All rights reserved.