Package jflex.base

Class IntPair


  • public abstract class IntPair
    extends Object
    Simple pair of integers.

    Used in NFA to represent a partial NFA by its start and end state.

    Version:
    JFlex 1.8.1
    Author:
    Gerwin Klein
    • Constructor Detail

      • IntPair

        public IntPair()
    • Method Detail

      • start

        public abstract int start()
      • end

        public abstract int end()
      • create

        public static IntPair create​(int start,
                                     int end)