Package jflex.base

Class IntPair

  • Direct Known Subclasses:
    AutoValue_IntPair

    public abstract class IntPair
    extends java.lang.Object
    Simple pair of integers.

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

    Version:
    JFlex 1.9.1
    • 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)