Enum Class Maapi.Verbosity

Object
Enum<Maapi.Verbosity>
com.tailf.maapi.Maapi.Verbosity
All Implemented Interfaces:
Serializable, Comparable<Maapi.Verbosity>, Constable
Enclosing class:
Maapi

public static enum Maapi.Verbosity extends Enum<Maapi.Verbosity>
To be used in: Maapi.reportProgress(int,Verbosity,String) Maapi.reportProgress(int,Verbosity,String,String) Maapi.reportProgressStart(int,Verbosity,String,String) Maapi.reportNedProgress(Verbosity,String,String,String) Maapi.reportNedProgressStart(Verbosity,String,String,String) Maapi.reportServiceProgress(int,Verbosity,String,ConfPath) Maapi.reportServiceProgress(int,Verbosity,String,String,ConfPath)
  • Enum Constant Details

    • NORMAL

      public static final Maapi.Verbosity NORMAL
      Designates informational messages that highlight the progress of the application at coarse-granined level. Used mainly to give a high level overview. This is the default and the lowest verbosity level.
    • VERBOSE

      public static final Maapi.Verbosity VERBOSE
      Designates detailed informational messages from the application.
    • VERY_VERBOSE

      public static final Maapi.Verbosity VERY_VERBOSE
      Designates very detailed informational messages from the application and its internal operations.
    • DEBUG

      public static final Maapi.Verbosity DEBUG
      The highest verbosity level. Designates fine-grained informational messages usable for debugging the application and its internal operations.
  • Method Details

    • values

      public static Maapi.Verbosity[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Maapi.Verbosity valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null