Package org.hpccsystems.ws.client.antlr
Class CaseControlStringStream
- java.lang.Object
-
- org.antlr.v4.runtime.ANTLRInputStream
-
- org.hpccsystems.ws.client.antlr.CaseControlStringStream
-
- All Implemented Interfaces:
org.antlr.v4.runtime.CharStream,org.antlr.v4.runtime.IntStream
public class CaseControlStringStream extends org.antlr.v4.runtime.ANTLRInputStream- Author:
- rpastrana for HPCC Edited and reformatted
-
-
Field Summary
Fields Modifier and Type Field Description booleantoUpperCase
-
Constructor Summary
Constructors Constructor Description CaseControlStringStream(char[] data, int numberOfActualCharsInArray)This is the preferred constructor as no data is actually copied.CaseControlStringStream(String input)Copy data from string to a local char array.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intLA(int i)
-
-
-
Constructor Detail
-
CaseControlStringStream
public CaseControlStringStream(String input)
Copy data from string to a local char array.- Parameters:
input- the input
-
CaseControlStringStream
public CaseControlStringStream(char[] data, int numberOfActualCharsInArray)This is the preferred constructor as no data is actually copied.- Parameters:
data- the datanumberOfActualCharsInArray- the number of actual chars in array
-
-