IdaJS
    Preparing search index...

    Interface EnumHandler

    Interface for handling enum object reading operations.

    interface EnumHandler {
        read(enumValue: number): string | number;
    }
    Index

    Methods

    Methods

    • Reads the enum value and returns the corresponding key name if found, otherwise returns the original numeric value.

      Parameters

      • enumValue: number

        The numeric value representing the enum.

      Returns string | number

      The key name if found, otherwise the numeric value.