private static class Quoter.ColumnRange
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
private int |
endColumn
This represents the end point to where a column will be subtracted
from a
String line. |
private int |
startColumn
This represents the starting point from where a column will be
subtracted from a
String line. |
| Constructor and Description |
|---|
ColumnRange(int startColumn,
int endColumn)
Constructor with 2 parameters.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getEndColumn()
Returns the end index of the column.
|
int |
getStartColumn()
Returns the starting index of the column.
|
private int startColumn
String line.private int endColumn
String line.public ColumnRange(int startColumn,
int endColumn)
startColumn - The index point from where the column starts(position
starts from 1).endColumn - The end index to where the column ends (inclusive).