# Enum: com.pnfsoftware.jeb.core.units.NotificationType

Notification types reported by [units](IUnit).

## Constant: AREA_OF_INTEREST
Description: A generic type to signify an area of interest within a unit. Same as [#INFO](#INFO).

## Constant: CORRUPTION
Description: Input corruption has been detected.

## Constant: DEPRECATED_FEATURE
Description: The unit has detected features that have been deprecated.

## Constant: ERROR
Description: A generic type to signify an error in the unit.

## Constant: INFO
Description: A generic type similar to [#AREA_OF_INTEREST](#AREA_OF_INTEREST).

## Constant: MALICIOUS
Description: The intent is malicious.

## Constant: POTENTIALLY_HARMFUL
Description: This type indicates usage of a feature not recommended by guidelines due to its potential dangerousness.

## Constant: UNSUPPORTED_FEATURE
Description: Some input cannot be parsed because of a limitation within the unit itself.

## Constant: WARNING
Description: A generic type to signify a warning in the unit.

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

Description: A description string for the notification.
return: the description string

## Method: getLevel
- return type: `int`

Description: Get the notification level. The level is a number between 0 and 100 that indicates the level of interest associated with the notification.
return: the notification level

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


## Static Method: valueOf
- parameter: `name`, type: `java.lang.String`
- return type: `com.pnfsoftware.jeb.core.units.NotificationType`


## Static Method: values
- return type: `com.pnfsoftware.jeb.core.units.NotificationType[]`


