static enum Interval.RegisterBinding extends Enum<Interval.RegisterBinding>
Enum Constant and Description |
---|
Any
Interval has no specific register requirements.
|
Fixed
Interval is bound to a specific register as required by the platform.
|
Stack
Interval is bound to a stack slot.
|
Modifier and Type | Field and Description |
---|---|
static Interval.RegisterBinding[] |
VALUES |
Modifier and Type | Method and Description |
---|---|
static Interval.RegisterBinding |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Interval.RegisterBinding[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Interval.RegisterBinding Fixed
public static final Interval.RegisterBinding Any
public static final Interval.RegisterBinding Stack
public static final Interval.RegisterBinding[] VALUES
public static Interval.RegisterBinding[] values()
for (Interval.RegisterBinding c : Interval.RegisterBinding.values()) System.out.println(c);
public static Interval.RegisterBinding 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 null