Class RegexScanError


  • public class RegexScanError
    extends java.lang.Object
    Represents information about an error which occurred in RegexScanner while scanning.
    • Constructor Summary

      Constructors 
      Constructor Description
      RegexScanError​(nuix.Item item, PatternInfo patternInfo, java.lang.String location, java.lang.Exception exception)
      Creates a new instance
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Exception getException()
      Gets the associated exception
      nuix.Item getItem​(nuix.Case nuixCase)
      Gets the associated item
      java.lang.String getItemGuid()  
      java.lang.String getLocation()
      Gets the associated location
      PatternInfo getPatternInfo()
      Gets the associated pattern info
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • RegexScanError

        public RegexScanError​(nuix.Item item,
                              PatternInfo patternInfo,
                              java.lang.String location,
                              java.lang.Exception exception)
        Creates a new instance
        Parameters:
        item - The item being scanned during the error
        patternInfo - The pattern in use when the error occurred
        location - The location being scanned when the error occured (content or metadata property name)
        exception - The exception which was thrown
    • Method Detail

      • getItem

        public nuix.Item getItem​(nuix.Case nuixCase)
        Gets the associated item
        Parameters:
        nuixCase - The case in which the item resides.
        Returns:
        The associated item
      • getItemGuid

        public java.lang.String getItemGuid()
      • getPatternInfo

        public PatternInfo getPatternInfo()
        Gets the associated pattern info
        Returns:
        The associated pattern info
      • getLocation

        public java.lang.String getLocation()
        Gets the associated location
        Returns:
        The associated location
      • getException

        public java.lang.Exception getException()
        Gets the associated exception
        Returns:
        The associated exception