Enum NoOpLogger

java.lang.Object
java.lang.Enum<NoOpLogger>
org.oristool.analyzer.log.NoOpLogger
All Implemented Interfaces:
Serializable, Comparable<NoOpLogger>, AnalysisLogger

public enum NoOpLogger extends Enum<NoOpLogger> implements AnalysisLogger
Logger discarding its input.
  • Enum Constant Details

    • INSTANCE

      public static final NoOpLogger INSTANCE
  • Method Details

    • values

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

      public static NoOpLogger valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null
    • log

      public void log(String message)
      Specified by:
      log in interface AnalysisLogger
    • debug

      public void debug(String string)
      Specified by:
      debug in interface AnalysisLogger