static enum RelocData.Type extends java.lang.Enum<RelocData.Type>
Enum Constant and Description |
---|
ABSOLUTE_TO_ABSOLUTE |
ABSOLUTE_TO_RELATIVE |
ABSOLUTE_TO_RELATIVE_TRAMPOLINE |
RELATIVE_TO_ABSOLUTE |
Modifier and Type | Method and Description |
---|---|
static RelocData.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RelocData.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RelocData.Type ABSOLUTE_TO_ABSOLUTE
public static final RelocData.Type RELATIVE_TO_ABSOLUTE
public static final RelocData.Type ABSOLUTE_TO_RELATIVE
public static final RelocData.Type ABSOLUTE_TO_RELATIVE_TRAMPOLINE
public static RelocData.Type[] values()
for (RelocData.Type c : RelocData.Type.values()) System.out.println(c);
public static RelocData.Type 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