Class CustomImportOrderCheck.RuleMatchForImport

    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.lang.String group
      Import group for current best match.
      private int matchLength
      Length of matching string for current best match.
      private int matchPosition
      Position of matching string for current best match.
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private RuleMatchForImport​(java.lang.String group, int length, int position)
      Constructor to initialize the fields.
    • Method Summary

      • Methods inherited from class java.lang.Object

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

      • matchPosition

        private final int matchPosition
        Position of matching string for current best match.
      • matchLength

        private int matchLength
        Length of matching string for current best match.
      • group

        private java.lang.String group
        Import group for current best match.
    • Constructor Detail

      • RuleMatchForImport

        private RuleMatchForImport​(java.lang.String group,
                                   int length,
                                   int position)
        Constructor to initialize the fields.
        Parameters:
        group - Matched group.
        length - Matching length.
        position - Matching position.