Interface ObfuscationUtil.IClassRemapper

Enclosing class:
ObfuscationUtil

public static interface ObfuscationUtil.IClassRemapper
Interface for remapper proxies
  • Method Summary

    Modifier and Type
    Method
    Description
    map(String typeName)
    Map type name to the new name.
    unmap(String typeName)
    Convert a mapped type name back to the original obfuscated name
  • Method Details

    • map

      String map(String typeName)
      Map type name to the new name. Subclasses can override.
      Parameters:
      typeName - Class name to convert
      Returns:
      new name for the class
    • unmap

      String unmap(String typeName)
      Convert a mapped type name back to the original obfuscated name
      Parameters:
      typeName - Class name to convert
      Returns:
      old name for the class