# Class: com.pnfsoftware.jeb.core.units.code.android.ApkManifestHelper.IntentFilterDescription

Short description of an intent filter. That include the filter actions and categories.

## Constructor: IntentFilterDescription


## Method: check
- parameter: `action`, type: `java.lang.String`
- parameter: `category`, type: `java.lang.String`
- return type: `boolean`

Description: Check whether this intent filter matches an action and category.
parameter: action: action name, or null to ignore actions
parameter: category: category name, or null to ignore categories
return: true if the filter matches

## Method: getActions
- return type: `java.util.List<java.lang.String>`

Description: Get intent filter actions.
return: the action names

## Method: getCategories
- return type: `java.util.List<java.lang.String>`

Description: Get intent filter categories.
return: the category names

## Method: toString
- return type: `java.lang.String`


