SymbolType enum
An enumeration of recognized symbol types used by the ELF format.
Values
- STT_NOTYPE → const SymbolType
-
const SymbolType(0, 'notype')
- STT_OBJECT → const SymbolType
-
const SymbolType(1, 'object')
- STT_FUNC → const SymbolType
-
const SymbolType(2, 'function')
- STT_SECTION → const SymbolType
-
const SymbolType(3, 'section')
- STT_FILE → const SymbolType
-
const SymbolType(4, 'file')
- STT_COMMON → const SymbolType
-
const SymbolType(5, 'common')
- STT_TLS → const SymbolType
-
const SymbolType(6, 'thread-local')
Properties
- code → int
-
final
- description → String
-
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
fromCode(
int code) → SymbolType?
Constants
-
values
→ const List<
SymbolType> - A constant List of the values in this enum, in order of their declaration.