public enum Allocator extends Enum<Allocator>
| Modifier and Type | Method and Description |
|---|---|
abstract AbstractAllocator |
allocate(Program aProgram,
Function<Variable,TypeRef> aTypeConverter,
BytecodeLinkerContext aLinkerContext) |
static Allocator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Allocator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Allocator linear
public static final Allocator passthru
public static Allocator[] values()
for (Allocator c : Allocator.values()) System.out.println(c);
public static Allocator 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 abstract AbstractAllocator allocate(Program aProgram, Function<Variable,TypeRef> aTypeConverter, BytecodeLinkerContext aLinkerContext)
Copyright © 2020 Systemprogrammierung Mirko Sertic. All rights reserved.