public enum TemporaryVariableType extends Enum<TemporaryVariableType>
| Enum Constant and Description |
|---|
BOOLEAN |
CLOSURE |
CURRENT_MODULE |
CURRENT_SCOPE |
FIXNUM |
FLOAT |
LOCAL |
| Modifier and Type | Method and Description |
|---|---|
static TemporaryVariableType |
fromOrdinal(int value) |
static TemporaryVariableType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TemporaryVariableType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TemporaryVariableType LOCAL
public static final TemporaryVariableType BOOLEAN
public static final TemporaryVariableType FLOAT
public static final TemporaryVariableType FIXNUM
public static final TemporaryVariableType CLOSURE
public static final TemporaryVariableType CURRENT_MODULE
public static final TemporaryVariableType CURRENT_SCOPE
public static TemporaryVariableType[] values()
for (TemporaryVariableType c : TemporaryVariableType.values()) System.out.println(c);
public static TemporaryVariableType 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 TemporaryVariableType fromOrdinal(int value)
Copyright © 2001-2016 JRuby. All Rights Reserved.