Package jflex.base
Class IntPair
- java.lang.Object
-
- jflex.base.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.8.2
-
-
Constructor Summary
Constructors Constructor Description IntPair()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static IntPair
create(int start, int end)
abstract int
end()
abstract int
start()
-
-
-
Method Detail
-
start
public abstract int start()
-
end
public abstract int end()
-
create
public static IntPair create(int start, int end)
-
-