public enum DataDirectoryType extends Enum<DataDirectoryType>
| Enum Constant and Description |
|---|
ARCHITECTURE
Reserved, must be 0
|
BASE_RELOCATION_TABLE
The base relocation table
|
BOUND_IMPORT_TABLE
The bound import table
|
CERTIFICATE_TABLE
The attribute certificate table
|
CLR_RUNTIME_HEADER
The CLR runtime header
|
DEBUG
The debug data starting
|
DELAY_LOAD_IMPORT_TABLE
The delay import descriptor
|
EXCEPTION_TABLE
The exception table
|
EXPORT_TABLE
The export table
|
GLOBAL_POINTER
The RVA of the value to be stored in the global pointer register.
|
IMPORT_ADDRESS_TABLE
The import address table
|
IMPORT_TABLE
The import table
|
LOAD_CONFIG_TABLE
The load configuration table
|
RESOURCE_TABLE
The resource table
|
THREAD_LOCAL_STORAGE_TABLE
The thread local storage (TLS) table
|
| Modifier and Type | Method and Description |
|---|---|
static DataDirectoryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataDirectoryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataDirectoryType ARCHITECTURE
public static final DataDirectoryType BASE_RELOCATION_TABLE
public static final DataDirectoryType BOUND_IMPORT_TABLE
public static final DataDirectoryType CERTIFICATE_TABLE
public static final DataDirectoryType CLR_RUNTIME_HEADER
public static final DataDirectoryType DEBUG
public static final DataDirectoryType DELAY_LOAD_IMPORT_TABLE
public static final DataDirectoryType EXCEPTION_TABLE
public static final DataDirectoryType EXPORT_TABLE
public static final DataDirectoryType GLOBAL_POINTER
public static final DataDirectoryType IMPORT_ADDRESS_TABLE
public static final DataDirectoryType IMPORT_TABLE
public static final DataDirectoryType LOAD_CONFIG_TABLE
public static final DataDirectoryType RESOURCE_TABLE
public static final DataDirectoryType THREAD_LOCAL_STORAGE_TABLE
public static DataDirectoryType 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 DataDirectoryType[] values()
for (DataDirectoryType c : DataDirectoryType.values()) System.out.println(c);
Copyright © 2012–2020. All rights reserved.