Class Mark
- java.lang.Object
-
- org.snakeyaml.engine.v2.exceptions.Mark
-
- All Implemented Interfaces:
Serializable
public final class Mark extends Object implements Serializable
It's just a record and its only use is producing nice error messages. Parser does not use it for any other purposes.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringcreateSnippet()StringcreateSnippet(int indent, int maxLength)int[]getBuffer()intgetColumn()starts with 0intgetIndex()starts with 0intgetLine()starts with 0StringgetName()intgetPointer()StringtoString()
-
-
-
Constructor Detail
-
Mark
public Mark(String name, int index, int line, int column, int[] buffer, int pointer)
CreatesMark- Parameters:
name- - the name to be used as identifierindex- - the index from the beginning of the streamline- - line of the mark from beginning of the streamcolumn- - column of the mark from beginning of the linebuffer- - the datapointer- - the position of the mark from the beginning of the stream
-
Mark
public Mark(String name, int index, int line, int column, char[] str, int pointer)
This constructor is only for test- Parameters:
name- - the name to be used as identifierindex- - the index from the beginning of the streamline- - line of the mark from beginning of the streamcolumn- - column of the mark from beginning of the linestr- - the datapointer- - the position of the mark from the beginning of the stream
-
-
Method Detail
-
createSnippet
public String createSnippet(int indent, int maxLength)
-
createSnippet
public String createSnippet()
-
getName
public String getName()
-
getLine
public int getLine()
starts with 0- Returns:
- line number
-
getColumn
public int getColumn()
starts with 0- Returns:
- column number
-
getIndex
public int getIndex()
starts with 0- Returns:
- character number
-
getBuffer
public int[] getBuffer()
-
getPointer
public int getPointer()
-
-