@Deprecated public enum RELOC_MODE extends Enum<RELOC_MODE>
Enum Constant and Description |
---|
RELOC_NONE
Deprecated.
No relocation.
|
RELOC_OVERWRITE
Deprecated.
Overwrite relocation (immediates as constants).
|
Modifier and Type | Method and Description |
---|---|
static RELOC_MODE |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static RELOC_MODE[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RELOC_MODE RELOC_NONE
public static final RELOC_MODE RELOC_OVERWRITE
public static RELOC_MODE[] values()
for (RELOC_MODE c : RELOC_MODE.values()) System.out.println(c);
public static RELOC_MODE 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 nullCopyright © 2017. All rights reserved.