Class ApkManifestHelper.IntentFilterDescription

java.lang.Object
com.pnfsoftware.jeb.core.units.code.android.ApkManifestHelper.IntentFilterDescription
Enclosing class:
ApkManifestHelper

public static class ApkManifestHelper.IntentFilterDescription extends Object
Short description of an intent filter. That include the filter actions and categories.
  • Constructor Details

    • IntentFilterDescription

      public IntentFilterDescription()
  • Method Details

    • getActions

      public List<String> getActions()
      Get intent filter actions.
      Returns:
      the action names
    • getCategories

      public List<String> getCategories()
      Get intent filter categories.
      Returns:
      the category names
    • check

      public boolean check(String action, String category)
      Check whether this intent filter matches an action and category.
      Parameters:
      action - action name, or null to ignore actions
      category - category name, or null to ignore categories
      Returns:
      true if the filter matches
    • toString

      public String toString()
      Overrides:
      toString in class Object