/* * */ package application.tools; /** * The type of the notification to be shown. * * @author GOXR3PLUS */ public enum NotificationType { /** The simple. */ SIMPLE, /** The warning. */ WARNING, /** The information. */ INFORMATION, /** The confirm. */ CONFIRM, /** The error. */ ERROR; }