Provided by: libattean-perl_0.033-1_all
NAME
AtteanX::SPARQL::Token - Token objects used for parsing and serializing SPARQL
VERSION
This document describes AtteanX::SPARQL::Token version 0.033
SYNOPSIS
use v5.14; use Attean;
DESCRIPTION
The AtteanX::SPARQL::Token class represents tokens produced and used during parsing and serializing of SPARQL.
ATTRIBUTES
"type" An integer indicating the token type, defined in AtteanX::Parser::Turtle::Constants "start_line" The line number in the source text that this token begins on. "start_column" The column number in the source text that this token begins on. "line" The line number in the source text that this token ends on. "column" The column number in the source text that this token ends on. "args" An array of values associated with the token (e.g. the integer value of an INT token).
METHODS
"value" Returns the token value. "fast_constructor ( $type, $start_line, $start_col, $line, $col, \@args )" Returns a new token object. "keyword( $kw )" Returns a new AtteanX::SPARQL::Token object with the "KEYWORD" type and $kw value. "integer( $value )" Returns a new AtteanX::SPARQL::Token object with the "INTEGER" type and the given $value. "as_string" Returns a string description of the token including the token type and any associated values.
BUGS
Please report any bugs or feature requests to through the GitHub web interface at <https://github.com/kasei/attean/issues>.
SEE ALSO
AUTHOR
Gregory Todd Williams "<gwilliams@cpan.org>"
COPYRIGHT
Copyright (c) 2014--2022 Gregory Todd Williams. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.