public enum JetTypeMapperMode extends java.lang.Enum<JetTypeMapperMode>
| Enum Constant and Description |
|---|
IMPL
foo.Bar is mapped to Lfoo/Bar;
|
TRAIT_IMPL
foo.Bar is mapped to Lfoo/Bar$TImpl;
|
TYPE_PARAMETER
jet.Int is mapped to Ljava/lang/Integer;
|
VALUE
jet.Int is mapped to I
|
| Modifier and Type | Method and Description |
|---|---|
static JetTypeMapperMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JetTypeMapperMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JetTypeMapperMode IMPL
public static final JetTypeMapperMode TRAIT_IMPL
public static final JetTypeMapperMode VALUE
public static final JetTypeMapperMode TYPE_PARAMETER
public static JetTypeMapperMode[] values()
for (JetTypeMapperMode c : JetTypeMapperMode.values()) System.out.println(c);
public static JetTypeMapperMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null