Class InfoMessage


  • public class InfoMessage
    extends Message
    This class encapsulates an informational message from a Module, giving information (not necessarily a problem) about the content being analyzed or the way that JHOVE deals with it.
    • Constructor Detail

      • InfoMessage

        public InfoMessage​(String message)
        Creates an InfoMessage.
        Parameters:
        message - Human-readable message giving the information.
      • InfoMessage

        public InfoMessage​(JhoveMessage message)
        Creates an InfoMessage with an identifier.
        Parameters:
        message - The message text and its identifier.
      • InfoMessage

        public InfoMessage​(String message,
                           long offset)
        Creates an InfoMessage.
        Parameters:
        message - Human-readable message giving the information.
        offset - The offset in the file relevant to the situation being described.
      • InfoMessage

        public InfoMessage​(JhoveMessage message,
                           long offset)
        Creates an InfoMessage with an identifier.
        Parameters:
        message - The message text and its identifier.
        offset - The offset in the file relevant to the situation being described.
      • InfoMessage

        public InfoMessage​(String message,
                           String subMessage)
        Creates an InfoMessage.
        Parameters:
        message - Human-readable message giving the information.
        subMessage - Human-readable additional information.
      • InfoMessage

        public InfoMessage​(JhoveMessage message,
                           String subMessage)
        Creates an InfoMessage with an identifier.
        Parameters:
        message - The message text and its identifier.
        subMessage - Human-readable additional information.
      • InfoMessage

        public InfoMessage​(String message,
                           String subMessage,
                           long offset)
        Creates an InfoMessage.
        Parameters:
        message - Human-readable message giving the information.
        subMessage - Human-readable additional information.
        offset - The offset in the file relevant to the situation being described.
      • InfoMessage

        public InfoMessage​(JhoveMessage message,
                           String subMessage,
                           long offset)
        Creates an InfoMessage with an identifier.
        Parameters:
        message - The message text and its identifier.
        subMessage - Human-readable additional information.
        offset - The offset in the file relevant to the situation being described.