Merge branch 'master' of gitlab.odin.cse.buffalo.edu:odin-lab/Website

This commit is contained in:
Oliver Kennedy 2016-02-10 19:35:07 -05:00
commit 3cfcac54c3
307 changed files with 1360 additions and 671 deletions

View file

@ -165,8 +165,17 @@ body {
margin-right: 50px;
line-height: 24px;
}
.content pre {
margin-left: 50px;
margin-right: 50px;
}
.content iframe {
margin-left: 50px;
margin-right: 50px;
}
.content li {
margin-bottom: 7px;
margin-top: 3px;
}
.content ul {
margin-left: 40px;

File diff suppressed because one or more lines are too long

View file

@ -11,15 +11,17 @@ classContent:
slides: 02-RelationalAlgebra.pdf
video: https://www.youtube.com/watch?v=qj67794J8eg
- date: Feb. 2
topic: SQL & Translating SQL to Relational Algebra
topic: SQL
meta:
slides: 03-SQL.pdf
video: https://www.youtube.com/watch?v=tp2X0NrlulY
- date: Feb. 4
topic: Evaluating Relational Algebra & Project 1 Overview
topic: SQL to RA and Evaluation
meta:
slides: 04-SQLToRAAndEval.pdf
video: https://www.youtube.com/watch?v=T-A9pMY-mPk
- date: Feb. 9
topic: Extending and Optimizing Relational Algebra
topic: Project 1 Overview, Generalized RA
meta:
slides: 05-ExtendedRAProj1.pdf
- date: Feb. 11
@ -119,7 +121,7 @@ In this course, you will learn...
## Library Documentation
* __JSqlParser__ (<a href="/software/jsqlparser/jsqlparser.jar">binary</a> | <a href="https://github.com/UBOdin/jsqlparser">source</a> | <a href="/software/jsqlparser/">docs</a> | <a href="https://youtu.be/U4TyaHTJ3Zg">demo</a>)
* __JSqlParser__ ( <a href="/software/jsqlparser/jsqlparser.jar">binary</a> | <a href="https://github.com/UBOdin/jsqlparser">source</a> | <a href="/software/jsqlparser/">docs</a> | <a href="https://youtu.be/U4TyaHTJ3Zg">demo</a> )
------

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,251 @@
---
title: DµBStep Checkpoint 1
---
<h1>DuBStep Checkpoint 1</h1>
<ul>
<li><strong>Overview</strong>: Submit a simple SPJUA query evaluator.</li>
<li><strong>Deadline</strong>: Feb 23</li>
<li><strong>Grade</strong>: 15% of Project Component
<ul>
<li>5% Correctness</li>
<li>5% Efficiency</li>
</ul>
</li>
</ul>
<p>In this project, you will implement a simple SQL query evaluator with support for Select, Project, Join, Bag Union, and Aggregate operations.  You will receive a set of data files, schema information, and be expected to evaluate multiple SELECT queries over those data files.</p>
<p>Your code is expected to evaluate the SELECT statements on provided data, and produce output in a standardized form. Your code will be evaluated for both correctness and performance (in comparison to a naive evaluator based on iterators and nested-loop joins).</p>
<h1>Parsing SQL</h1>
<p>A parser converts a human-readable string into a structured representation of the program (or query) that the string describes. A fork of the <a href="http://github.com/ubodin/jsqlparser">JSQLParser</a> open-source SQL parser (JSQLParser) will be provided for your use.  The JAR may be downloaded from:</p>
<center><a href="/software/jsqlparser/jsqlparser.jar">http://odin.cse.buffalo.edu/software/jsqlparser/jsqlparser.jar</a></center>
<p>And documentation for the fork is available at</p>
<center><a href="/software/jsqlparser">http://odin.cse.buffalo.edu/software/jsqlparser</a></center>
<p>You are not required to use this parser (i.e., you may write your own if you like). However, we will be testing your code on SQL that is guaranteed to parse with JSqlParser.</p>
<p>Basic use of the parser requires a <tt>java.io.Reader</tt> or <tt>java.io.InputStream</tt> from which the file data to be parsed (For example, a <tt>java.io.FileReader</tt>). Let's assume you've created one already (of either type) and called it <tt>inputFile</tt>.</p>
<pre>CCJSqlParser parser = new CCJSqlParser(inputFile);
Statement statement;
while((statement = parser.Statement()) != null){
// `statement` now has one of the several
// implementations of the Statement interface
}
// End-of-file. Exit!</pre>
<p>At this point, you'll need to figure out what kind of statement you're dealing with. For this project, we'll be working with <tt>Select</tt> and <tt>CreateTable</tt>. There are two ways to do this: Visitor classes, or the <tt>instanceof</tt> relation. We strongly recommend using <tt>instanceof</tt>:</p>
<pre>if(statement instanceof Select) {
Select selectStatement = (Select)statement;
// handle the select
} else if(statement instanceof CreateTable) {
// and so forth
}</pre>
<h2>Example</h2>
<iframe src="https://www.youtube.com/embed/U4TyaHTJ3Zg" width="540" height="405" frameborder="0" allowfullscreen="allowfullscreen"></iframe>
<h1>Expressions</h1>
<p>JSQLParser includes an interface called <tt>Expression</tt> that represents a primitive-valued expression parse tree.  UB's JSQLParser fork includes a class called <tt>Eval</tt> that can be used to evaluate <tt>Expression</tt> objects. To use the <tt>Eval</tt> class, you will need to define a method for dereferencing <tt>Column</tt> objects.  For example, if I have a <tt>Map</tt> called <tt>tupleSchema</tt> that contains my tuple schema, and an <tt>ArrayList</tt> called <tt>tuple</tt> that contains the tuple I am currently evaluating, I might write:</p>
<pre>public void PrimitiveValue eval(Column x){
int colID = tupleSchema.get(x.getName());
return tuple.get(colID);
}</pre>
<p>After doing this, you can use Eval.eval() to evaluate any expression in the context of tuple.</p>
<h1>Source Data</h1>
<p>Because you are implementing a query evaluator and not a full database engine, there will not be any tables -- at least not in the traditional sense of persistent objects that can be updated and modified. Instead, you will be given a <strong>Table Schema</strong> and a <strong>CSV File</strong> with the instance in it. To keep things simple, we will use the <tt>CREATE TABLE</tt> statement to define a relation's schema. To reiterate, <tt>CREATE TABLE</tt> statements <strong>only appear to give you a schema</strong>. You do not need to allocate any resources for the table in reaction to a <tt>CREATE TABLE</tt> statement -- Simply save the schema that you are given for later use. Sql types (and their corresponding java types) that will be used in this project are as follows:</p>
<table>
<tbody>
<tr>
<th>SQL Type</th>
<th>Java Equivalent</th>
</tr>
<tr>
<td>string</td>
<td>StringValue</td>
</tr>
<tr>
<td>varchar</td>
<td>StringValue</td>
</tr>
<tr>
<td>char</td>
<td>StringValue</td>
</tr>
<tr>
<td>int</td>
<td>LongValue</td>
</tr>
<tr>
<td>decimal</td>
<td>DoubleValue</td>
</tr>
<tr>
<td>date</td>
<td>DateValue</td>
</tr>
</tbody>
</table>
<p>In addition to the schema, you will be given a data directory containing multiple data files who's names correspond to the table names given in the <tt>CREATE TABLE</tt> statements. For example, let's say that you see the following statement in your query file:</p>
<pre>CREATE TABLE R(A int, B int, C int);</pre>
<p>That means that the data directory contains a data file called 'R.dat' that might look like this:</p>
<pre>1|1|5
1|2|6
2|3|7</pre>
<p>Each line of text (see <tt>java.io.BufferedReader.readLine()</tt>) corresponds to one row of data. Each record is delimited by a vertical pipe '|' character.  Integers and floats are stored in a form recognized by Javas Long.parseLong() and Double.parseDouble() methods. Dates are stored in YYYY-MM-DD form, where YYYY is the 4-digit year, MM is the 2-digit month number, and DD is the 2-digit date. Strings are stored unescaped and unquoted and are guaranteed to contain no vertical pipe characters.</p>
<h1>Queries</h1>
<p>Your code is expected to support both aggregate and non-aggregate queries with the following features.  Keep in mind that this is only a minimum requirement.</p>
<ul>
<li>Non-Aggregate Queries
<ul>
<li>SelectItems may include:
<ul>
<li><strong>SelectExpressionItem</strong>: Any expression that <tt>Eval</tt> can evaluate.  Note that Column expressions may or may not include an appropriate source.  Where relevant, column aliases will be given, unless the SelectExpressionItem's expression is a Column (in which case the Column's name attribute should be used as an alias)</li>
<li><strong>AllTableColumns</strong>: For any aliased term in the from clause</li>
<li><strong>AllColumns</strong>: If present, this will be the only SelectItem in a given PlainSelect.</li>
</ul>
</li>
</ul>
</li>
<li>Aggregate Queries
<ul>
<li><strong>SelectItems</strong> may include:
<ul>
<li><strong>SelectExpressionItem</strong>s where the Expression is one of:
<ul>
<li>A Function with the (case-insensitive) name: SUM, COUNT, AVG, MIN or MAX.  The Function's argument(s) may be any expression(s) that can be evaluated by <tt>Eval</tt>.</li>
<li>A Single Column that also occurs in the GroupBy list.</li>
</ul>
</li>
<li><strong>AllTableColumns</strong>: If all of the table's columns also occur in the GroupBy list</li>
<li><strong>AllColumns</strong>: If all of the source's columns also occur in the GroupBy list.</li>
</ul>
</li>
<li>GroupBy column references are all Columns.</li>
</ul>
</li>
<li>Both Types of Queries
<ul>
<li>From/Joins may include:
<ul>
<li><strong>Join</strong>: All joins will be simple joins</li>
<li><strong>Table</strong>: Tables may or may not be aliased.  Non-Aliased tables should be treated as being aliased to the table's name.</li>
<li><strong>SubSelect</strong>: SubSelects may be aggregate or non-aggregate queries, as here.</li>
</ul>
</li>
<li>The Where/Having clauses may include:
<ul>
<li>Any expression that <tt>Eval</tt> will evaluate to an instance of BooleanValue</li>
</ul>
</li>
<li>Allowable Select Options include
<ul>
<li>SELECT DISTINCT (but not SELECT DISTINCT ON)</li>
<li>UNION ALL (but not UNION)</li>
<li>Order By: The OrderByItem expressions may include any expression that can be evaluated by <tt>Eval</tt>.  Columns in the OrderByItem expressions will refer only to aliases defined in the SelectItems (i.e., the output schema of the query's projection.  See TPC-H Benchmark Query 5 for an example of this)</li>
<li>Limit: RowCount limits (e.g., LIMIT 5), but not Offset limits (e.g., LIMIT 5 OFFSET 10) or JDBC parameter limits.</li>
</ul>
</li>
</ul>
</li>
</ul>
<h1>Output</h1>
<p>Your code is expected output query results in the same format as the input data:</p>
<ul>
<li>One output row per ('\n'-delimited) line.  If there is no ORDER BY clause, you may emit the rows in any order.</li>
<li>One output value per ('|'-delimited) field.  Columns should appear in the same order that they appear in the query.  Table Wildcards should be resolved in the same order that the columns appear in the CREATE TABLE statement.  Global Wildcards should be resolved as Table Wildcards with the tables in the same order that they appear in the FROM clause.</li>
<li>A trailing newline as the last character of the file.</li>
<li>You should not output any header information or other formatting.</li>
</ul>
<h1>Example Queries and Data</h1>
<p>These are only examples.  Your code will be expected to handle these queries, as well as others.</p>
<ul>
<li><a href="Sanity_Check_Examples.tgz">Sanity Check Examples</a>: A thorough suite of test cases covering most simple query features.</li>
<li><a href="NBA_Query_Examples.tgz">Example NBA Benchmark Queries</a>: Some very simple queries to get you started.</li>
<li><a href="http://www.tpc.org/information/current_specifications.asp">The TPC-H Benchmark</a>: This benchmark consists of two parts: DBGen (generates the data) and a specification document (defines the queries).  A nice summary of the TPC-H queries can be found <a href="http://www.dbtoaster.org/index.php?page=samples">here</a>.</li>
</ul>
<p>The SQL implementation used by TPC-H differs in a few subtle ways from the implementation used by JSqlParser.  Minor structural rewrites to the queries in the specification document will be required:</p>
<ul>
<li>The date format used by TPC-H differs from the date format used by SqlParser.  You will need to replace all instances of date 'YYYY-MM-DD' with DATE('YYYY-MM-DD') or {d'YYYY-MM-DD'}</li>
<li>Many queries in TPC-H use INTERVALs, which the project does not require support for.  However, these are all added to hard-coded parameters.  You will need to manually add the interval to the parameter (e.g., DATE '1982-01-01' + INTERVAL '1 YEAR' becomes DATE('1983-01-01'))</li>
</ul>
<p>Queries that conform to the specifications for this project include: Q1, Q3, Q5, Q6, Q8*, Q9, Q10, Q12*, Q14*, Q15*, Q19* (Asterisks mean that the query doesn't meet the spec as written, but can easily be rewritten into one that does)</p>
<ul>
<li>Q2 requires SubSelect expressions.</li>
<li>Q4  requires EXISTS and SubSelect expressions.</li>
<li>Q7 requires an implementation of the EXTRACT function.</li>
<li>Q8 violates the restriction on simple select items in aggregate queries.  It can be rewritten into a compliant form with FROM-nested Selects.</li>
<li>Q11 violates the simple select item restriction, and requires  SubSelect expressions.</li>
<li>Q12 requires IN expressions, but may be rewritten into a compliant form.</li>
<li>Q13 requires Outer Joins.</li>
<li>Q14 violates the simple select item restriction, but may be rewritten into a compliant form.</li>
<li>Q15 uses views, but may be rewritten into a compliant form</li>
<li>Q16 uses IN and NOT IN expressions as well as SubSelects</li>
<li>Q17 uses SubSelect expressions and violates the simple select item restriction</li>
<li>Q18 uses IN and violates the simple select item restriction</li>
<li>Q19 uses IN but may be rewritten into a compliant form</li>
<li>Q20 uses IN and SubSelects</li>
<li>Q21 uses EXISTS, NOT EXISTS and SubSelects</li>
<li>Q22 requires an implementation of the SUBSTRING function, IN, NOT EXISTS and SubSelects</li>
</ul>
<h1>Code Submission</h1>
<p>As before, all .java files in the src directory at the root of your repository will be compiled (and linked against JSQLParser). Also as before, the class <tt>dubstep.Main</tt> will be invoked with the following arguments:</p>
<ul>
<li>--data data directory: A path to a directory containing the .dat data files for this test.</li>
<li>sql file: one or more sql files for you to parse and evaluate. Treat multiple files as if they were one really really long file (queries will never span multiple files, but we may use one file to define a schema and one with the queries). </li>
</ul>
<p>For example:</p>
<pre>$&gt; ls data
R.dat
S.dat
T.dat
$&gt; cat data/R.dat
1|1|5
1|2|6
2|3|7
$&gt; cat query.sql
CREATE TABLE R(A int, B int, C int)
SELECT B, C FROM R WHERE A = 1
$&gt; java -cp build:jsqlparser.jar dubstep.Main --data data query.sql
1|5
2|6
</pre>
<p>Once again, the data directory contains files named table name.dat where table name is the name used in a CREATE TABLE statement. Notice the effect of CREATE TABLE statements is not to create a new file, but simply to link the given schema to an existing .dat file. These files use vertical-pipe (|) as a field delimiter, and newlines (\n) as record delimiters.</p>
<p>The testing environment is configured with the Sun JDK version 1.8.</p>
<h1>Grading</h1>
<p>Your code will be subjected to a sequence of test cases, most of which are provided in the project code (though different data will be used). The NBA queries (in the examples given above) and TPC-H queries (under the constraints listed above) are both fair game. For TPC-H, a SF 0.1 (100MB dataset will be used). Time constraints are based on the reference implementation for Checkpoint 1. </p>
<table>
<tr>
<th>Query</th>
<th>Max Credit</th>
<th>Fast Time (full credit)</th>
<th>Slow Time (75% credit)</th>
<th>Cutoff Time (50% credit)</th>
<th>Reference Time</th>
</tr>
<tr>
<td>NBA Q1,Q2,Q3,Q4</td>
<td>1 point</td><td>5 s</td><td>15 s</td><td>30 s</td><td>1.5-1.8 s</td>
</tr>
<tr>
<td>TPCH Q1, Q6</td>
<td>1 point</td><td>5 s</td><td>15 s</td><td>30 s</td><td>1.4-1.5 s</td>
</tr>
<tr>
<td>TPCH Q3</td>
<td>2 points</td><td>200 s</td><td>300 s</td><td>420 s</td><td>170 s</td>
</tr>
<tr>
<td>TPCH Q12</td>
<td>2 points</td><td>30 s</td><td>60 s</td><td>90 s</td><td>16 s</td>
</tr>
</table>
<p>Producing the correct result on the test cluster, beating the fast time for each query will earn you full credit. Beating the slow and cutoff times will earn you 75% or 50% credit, respectively. Your query will be terminated if it runs slower than the cutoff time. The runtime of the reference implementation time is also given. Your overall project grade will be your total score for each of the individual components.  </p>
<p>Additionally, there will be a per-query leader-board for all groups who manage to get full credit on the overall assignment. Good luck.</p>

View file

@ -1 +0,0 @@
Under Construction

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:57 EST 2016 -->
<title>All Classes</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<script type="text/javascript" src="script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:57 EST 2016 -->
<title>All Classes</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<script type="text/javascript" src="script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Constant Field Values</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<script type="text/javascript" src="script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:57 EST 2016 -->
<title>Deprecated List</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<script type="text/javascript" src="script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:57 EST 2016 -->
<title>API Help</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<script type="text/javascript" src="script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:57 EST 2016 -->
<title>A-Index</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:57 EST 2016 -->
<title>J-Index</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:57 EST 2016 -->
<title>L-Index</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:57 EST 2016 -->
<title>M-Index</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:57 EST 2016 -->
<title>N-Index</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:57 EST 2016 -->
<title>O-Index</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:57 EST 2016 -->
<title>P-Index</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
</head>
@ -78,6 +78,8 @@
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../net/sf/jsqlparser/statement/drop/Drop.html#parameters">parameters</a></span> - Variable in class net.sf.jsqlparser.statement.drop.<a href="../net/sf/jsqlparser/statement/drop/Drop.html" title="class in net.sf.jsqlparser.statement.drop">Drop</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../net/sf/jsqlparser/expression/DateValue.html#parseEscaped-java.lang.String-">parseEscaped(String)</a></span> - Static method in class net.sf.jsqlparser.expression.<a href="../net/sf/jsqlparser/expression/DateValue.html" title="class in net.sf.jsqlparser.expression">DateValue</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../net/sf/jsqlparser/expression/StringValue.html#parseEscaped-java.lang.String-">parseEscaped(String)</a></span> - Static method in class net.sf.jsqlparser.expression.<a href="../net/sf/jsqlparser/expression/StringValue.html" title="class in net.sf.jsqlparser.expression">StringValue</a></dt>
<dd>&nbsp;</dd>
<dt><a href="../net/sf/jsqlparser/statement/select/PlainSelect.html" title="class in net.sf.jsqlparser.statement.select"><span class="typeNameLink">PlainSelect</span></a> - Class in <a href="../net/sf/jsqlparser/statement/select/package-summary.html">net.sf.jsqlparser.statement.select</a></dt>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:57 EST 2016 -->
<title>R-Index</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:57 EST 2016 -->
<title>S-Index</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:57 EST 2016 -->
<title>T-Index</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
</head>
@ -127,7 +127,9 @@
<dt><span class="memberNameLink"><a href="../net/sf/jsqlparser/expression/NullValue.html#toBool--">toBool()</a></span> - Method in class net.sf.jsqlparser.expression.<a href="../net/sf/jsqlparser/expression/NullValue.html" title="class in net.sf.jsqlparser.expression">NullValue</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../net/sf/jsqlparser/expression/PrimitiveValue.html#toBool--">toBool()</a></span> - Method in interface net.sf.jsqlparser.expression.<a href="../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></dt>
<dd>&nbsp;</dd>
<dd>
<div class="block">The boolean value of this primitive</div>
</dd>
<dt><span class="memberNameLink"><a href="../net/sf/jsqlparser/expression/StringValue.html#toBool--">toBool()</a></span> - Method in class net.sf.jsqlparser.expression.<a href="../net/sf/jsqlparser/expression/StringValue.html" title="class in net.sf.jsqlparser.expression">StringValue</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../net/sf/jsqlparser/expression/TimestampValue.html#toBool--">toBool()</a></span> - Method in class net.sf.jsqlparser.expression.<a href="../net/sf/jsqlparser/expression/TimestampValue.html" title="class in net.sf.jsqlparser.expression">TimestampValue</a></dt>
@ -145,7 +147,9 @@
<dt><span class="memberNameLink"><a href="../net/sf/jsqlparser/expression/NullValue.html#toDouble--">toDouble()</a></span> - Method in class net.sf.jsqlparser.expression.<a href="../net/sf/jsqlparser/expression/NullValue.html" title="class in net.sf.jsqlparser.expression">NullValue</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../net/sf/jsqlparser/expression/PrimitiveValue.html#toDouble--">toDouble()</a></span> - Method in interface net.sf.jsqlparser.expression.<a href="../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></dt>
<dd>&nbsp;</dd>
<dd>
<div class="block">The double value of this primitive</div>
</dd>
<dt><span class="memberNameLink"><a href="../net/sf/jsqlparser/expression/StringValue.html#toDouble--">toDouble()</a></span> - Method in class net.sf.jsqlparser.expression.<a href="../net/sf/jsqlparser/expression/StringValue.html" title="class in net.sf.jsqlparser.expression">StringValue</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../net/sf/jsqlparser/expression/TimestampValue.html#toDouble--">toDouble()</a></span> - Method in class net.sf.jsqlparser.expression.<a href="../net/sf/jsqlparser/expression/TimestampValue.html" title="class in net.sf.jsqlparser.expression">TimestampValue</a></dt>
@ -163,7 +167,9 @@
<dt><span class="memberNameLink"><a href="../net/sf/jsqlparser/expression/NullValue.html#toLong--">toLong()</a></span> - Method in class net.sf.jsqlparser.expression.<a href="../net/sf/jsqlparser/expression/NullValue.html" title="class in net.sf.jsqlparser.expression">NullValue</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../net/sf/jsqlparser/expression/PrimitiveValue.html#toLong--">toLong()</a></span> - Method in interface net.sf.jsqlparser.expression.<a href="../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></dt>
<dd>&nbsp;</dd>
<dd>
<div class="block">The long value of this primitive</div>
</dd>
<dt><span class="memberNameLink"><a href="../net/sf/jsqlparser/expression/StringValue.html#toLong--">toLong()</a></span> - Method in class net.sf.jsqlparser.expression.<a href="../net/sf/jsqlparser/expression/StringValue.html" title="class in net.sf.jsqlparser.expression">StringValue</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../net/sf/jsqlparser/expression/TimestampValue.html#toLong--">toLong()</a></span> - Method in class net.sf.jsqlparser.expression.<a href="../net/sf/jsqlparser/expression/TimestampValue.html" title="class in net.sf.jsqlparser.expression">TimestampValue</a></dt>
@ -178,6 +184,26 @@
</dd>
<dt><span class="memberNameLink"><a href="../net/sf/jsqlparser/statement/select/Top.html#Top--">Top()</a></span> - Constructor for class net.sf.jsqlparser.statement.select.<a href="../net/sf/jsqlparser/statement/select/Top.html" title="class in net.sf.jsqlparser.statement.select">Top</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../net/sf/jsqlparser/expression/BooleanValue.html#toRawString--">toRawString()</a></span> - Method in class net.sf.jsqlparser.expression.<a href="../net/sf/jsqlparser/expression/BooleanValue.html" title="class in net.sf.jsqlparser.expression">BooleanValue</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../net/sf/jsqlparser/expression/DateValue.html#toRawString--">toRawString()</a></span> - Method in class net.sf.jsqlparser.expression.<a href="../net/sf/jsqlparser/expression/DateValue.html" title="class in net.sf.jsqlparser.expression">DateValue</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../net/sf/jsqlparser/expression/DoubleValue.html#toRawString--">toRawString()</a></span> - Method in class net.sf.jsqlparser.expression.<a href="../net/sf/jsqlparser/expression/DoubleValue.html" title="class in net.sf.jsqlparser.expression">DoubleValue</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../net/sf/jsqlparser/expression/LongValue.html#toRawString--">toRawString()</a></span> - Method in class net.sf.jsqlparser.expression.<a href="../net/sf/jsqlparser/expression/LongValue.html" title="class in net.sf.jsqlparser.expression">LongValue</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../net/sf/jsqlparser/expression/NullValue.html#toRawString--">toRawString()</a></span> - Method in class net.sf.jsqlparser.expression.<a href="../net/sf/jsqlparser/expression/NullValue.html" title="class in net.sf.jsqlparser.expression">NullValue</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../net/sf/jsqlparser/expression/PrimitiveValue.html#toRawString--">toRawString()</a></span> - Method in interface net.sf.jsqlparser.expression.<a href="../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></dt>
<dd>
<div class="block">An unescaped string encoding of this primitive value.</div>
</dd>
<dt><span class="memberNameLink"><a href="../net/sf/jsqlparser/expression/StringValue.html#toRawString--">toRawString()</a></span> - Method in class net.sf.jsqlparser.expression.<a href="../net/sf/jsqlparser/expression/StringValue.html" title="class in net.sf.jsqlparser.expression">StringValue</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../net/sf/jsqlparser/expression/TimestampValue.html#toRawString--">toRawString()</a></span> - Method in class net.sf.jsqlparser.expression.<a href="../net/sf/jsqlparser/expression/TimestampValue.html" title="class in net.sf.jsqlparser.expression">TimestampValue</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../net/sf/jsqlparser/expression/TimeValue.html#toRawString--">toRawString()</a></span> - Method in class net.sf.jsqlparser.expression.<a href="../net/sf/jsqlparser/expression/TimeValue.html" title="class in net.sf.jsqlparser.expression">TimeValue</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../net/sf/jsqlparser/expression/BinaryExpression.html#toString--">toString()</a></span> - Method in class net.sf.jsqlparser.expression.<a href="../net/sf/jsqlparser/expression/BinaryExpression.html" title="class in net.sf.jsqlparser.expression">BinaryExpression</a></dt>
<dd>&nbsp;</dd>
<dt><span class="memberNameLink"><a href="../net/sf/jsqlparser/expression/BooleanValue.html#toString--">toString()</a></span> - Method in class net.sf.jsqlparser.expression.<a href="../net/sf/jsqlparser/expression/BooleanValue.html" title="class in net.sf.jsqlparser.expression">BooleanValue</a></dt>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:57 EST 2016 -->
<title>U-Index</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:57 EST 2016 -->
<title>B-Index</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:57 EST 2016 -->
<title>V-Index</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:57 EST 2016 -->
<title>W-Index</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:57 EST 2016 -->
<title>C-Index</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:57 EST 2016 -->
<title>D-Index</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:57 EST 2016 -->
<title>E-Index</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:57 EST 2016 -->
<title>F-Index</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:57 EST 2016 -->
<title>G-Index</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:57 EST 2016 -->
<title>H-Index</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:57 EST 2016 -->
<title>I-Index</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../stylesheet.css" title="Style">
<script type="text/javascript" src="../script.js"></script>
</head>

View file

@ -2,7 +2,7 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:57 EST 2016 -->
<title>Generated Documentation (Untitled)</title>
<script type="text/javascript">
targetPage = "" + window.location.search;

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>JSQLParserException</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Uses of Class net.sf.jsqlparser.JSQLParserException</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Eval.ArithOp</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Eval.BoolOp</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Eval.CmpOp</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Eval.ScopeException</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Eval</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Uses of Class net.sf.jsqlparser.eval.Eval.ArithOp</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Uses of Class net.sf.jsqlparser.eval.Eval.BoolOp</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Uses of Class net.sf.jsqlparser.eval.Eval.CmpOp</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Uses of Class net.sf.jsqlparser.eval.Eval.ScopeException</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Uses of Class net.sf.jsqlparser.eval.Eval</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>net.sf.jsqlparser.eval</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>net.sf.jsqlparser.eval</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>net.sf.jsqlparser.eval Class Hierarchy</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:57 EST 2016 -->
<title>Uses of Package net.sf.jsqlparser.eval</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>AllComparisonExpression</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>AnyComparisonExpression</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>BinaryExpression</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>BooleanValue</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -18,7 +18,7 @@
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10};
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@ -218,18 +218,30 @@ implements <a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/BooleanValue.html#toBool--">toBool</a></span>()</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/BooleanValue.html#toBool--">toBool</a></span>()</code>
<div class="block">The boolean value of this primitive</div>
</td>
</tr>
<tr id="i5" class="rowColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/BooleanValue.html#toDouble--">toDouble</a></span>()</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/BooleanValue.html#toDouble--">toDouble</a></span>()</code>
<div class="block">The double value of this primitive</div>
</td>
</tr>
<tr id="i6" class="altColor">
<td class="colFirst"><code>long</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/BooleanValue.html#toLong--">toLong</a></span>()</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/BooleanValue.html#toLong--">toLong</a></span>()</code>
<div class="block">The long value of this primitive</div>
</td>
</tr>
<tr id="i7" class="rowColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/BooleanValue.html#toRawString--">toRawString</a></span>()</code>
<div class="block">An unescaped string encoding of this primitive value.</div>
</td>
</tr>
<tr id="i8" class="altColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/BooleanValue.html#toString--">toString</a></span>()</code>&nbsp;</td>
</tr>
</table>
@ -322,9 +334,13 @@ implements <a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html
<li class="blockList">
<h4>toLong</h4>
<pre>public&nbsp;long&nbsp;toLong()</pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toLong--">PrimitiveValue</a></code></span></div>
<div class="block">The long value of this primitive</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toLong--">toLong</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The long value of this primitive if it is a LongPrimitive</dd>
</dl>
</li>
</ul>
@ -335,9 +351,13 @@ implements <a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html
<li class="blockList">
<h4>toDouble</h4>
<pre>public&nbsp;double&nbsp;toDouble()</pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toDouble--">PrimitiveValue</a></code></span></div>
<div class="block">The double value of this primitive</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toDouble--">toDouble</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The double value of this primitive if it is a LongPrimitive or DoublePrimitive</dd>
</dl>
</li>
</ul>
@ -348,9 +368,30 @@ implements <a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html
<li class="blockList">
<h4>toBool</h4>
<pre>public&nbsp;boolean&nbsp;toBool()</pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toBool--">PrimitiveValue</a></code></span></div>
<div class="block">The boolean value of this primitive</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toBool--">toBool</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The boolean value of this primitive if it is a BoolPrimitive</dd>
</dl>
</li>
</ul>
<a name="toRawString--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>toRawString</h4>
<pre>public&nbsp;java.lang.String&nbsp;toRawString()</pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toRawString--">PrimitiveValue</a></code></span></div>
<div class="block">An unescaped string encoding of this primitive value. (toString() returns an escaped string)</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toRawString--">toRawString</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The unescaped string encoding of this primitive value</dd>
</dl>
</li>
</ul>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>CaseExpression</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>DateValue</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -18,8 +18,8 @@
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":9,"i8":10,"i9":10,"i10":10,"i11":10,"i12":10,"i13":10};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
@ -185,7 +185,7 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
@ -219,22 +219,38 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/DateValue.html#getYear--">getYear</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i7" class="rowColor">
<td class="colFirst"><code>static <a href="../../../../net/sf/jsqlparser/expression/DateValue.html" title="class in net.sf.jsqlparser.expression">DateValue</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/DateValue.html#parseEscaped-java.lang.String-">parseEscaped</a></span>(java.lang.String&nbsp;escapedValue)</code>&nbsp;</td>
</tr>
<tr id="i8" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/DateValue.html#setValue-java.sql.Date-">setValue</a></span>(java.sql.Date&nbsp;d)</code>&nbsp;</td>
</tr>
<tr id="i8" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/DateValue.html#toBool--">toBool</a></span>()</code>&nbsp;</td>
</tr>
<tr id="i9" class="rowColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/DateValue.html#toDouble--">toDouble</a></span>()</code>&nbsp;</td>
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/DateValue.html#toBool--">toBool</a></span>()</code>
<div class="block">The boolean value of this primitive</div>
</td>
</tr>
<tr id="i10" class="altColor">
<td class="colFirst"><code>long</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/DateValue.html#toLong--">toLong</a></span>()</code>&nbsp;</td>
<td class="colFirst"><code>double</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/DateValue.html#toDouble--">toDouble</a></span>()</code>
<div class="block">The double value of this primitive</div>
</td>
</tr>
<tr id="i11" class="rowColor">
<td class="colFirst"><code>long</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/DateValue.html#toLong--">toLong</a></span>()</code>
<div class="block">The long value of this primitive</div>
</td>
</tr>
<tr id="i12" class="altColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/DateValue.html#toRawString--">toRawString</a></span>()</code>
<div class="block">An unescaped string encoding of this primitive value.</div>
</td>
</tr>
<tr id="i13" class="rowColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/DateValue.html#toString--">toString</a></span>()</code>&nbsp;</td>
</tr>
@ -294,6 +310,15 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="parseEscaped-java.lang.String-">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>parseEscaped</h4>
<pre>public static&nbsp;<a href="../../../../net/sf/jsqlparser/expression/DateValue.html" title="class in net.sf.jsqlparser.expression">DateValue</a>&nbsp;parseEscaped(java.lang.String&nbsp;escapedValue)</pre>
</li>
</ul>
<a name="accept-net.sf.jsqlparser.expression.ExpressionVisitor-">
<!-- -->
</a>
@ -352,6 +377,23 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
<pre>public&nbsp;void&nbsp;setValue(java.sql.Date&nbsp;d)</pre>
</li>
</ul>
<a name="toRawString--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>toRawString</h4>
<pre>public&nbsp;java.lang.String&nbsp;toRawString()</pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toRawString--">PrimitiveValue</a></code></span></div>
<div class="block">An unescaped string encoding of this primitive value. (toString() returns an escaped string)</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toRawString--">toRawString</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The unescaped string encoding of this primitive value</dd>
</dl>
</li>
</ul>
<a name="toString--">
<!-- -->
</a>
@ -373,11 +415,15 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
<h4>toLong</h4>
<pre>public&nbsp;long&nbsp;toLong()
throws <a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toLong--">PrimitiveValue</a></code></span></div>
<div class="block">The long value of this primitive</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toLong--">toLong</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The long value of this primitive if it is a LongPrimitive</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code></dd>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code> - otherwise</dd>
</dl>
</li>
</ul>
@ -389,11 +435,15 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
<h4>toDouble</h4>
<pre>public&nbsp;double&nbsp;toDouble()
throws <a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toDouble--">PrimitiveValue</a></code></span></div>
<div class="block">The double value of this primitive</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toDouble--">toDouble</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The double value of this primitive if it is a LongPrimitive or DoublePrimitive</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code></dd>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code> - otherwise</dd>
</dl>
</li>
</ul>
@ -405,11 +455,15 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
<h4>toBool</h4>
<pre>public&nbsp;boolean&nbsp;toBool()
throws <a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toBool--">PrimitiveValue</a></code></span></div>
<div class="block">The boolean value of this primitive</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toBool--">toBool</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The boolean value of this primitive if it is a BoolPrimitive</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code></dd>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code> - otherwise</dd>
</dl>
</li>
</ul>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>DoubleValue</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -18,7 +18,7 @@
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10};
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@ -215,18 +215,30 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
</tr>
<tr id="i5" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/DoubleValue.html#toBool--">toBool</a></span>()</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/DoubleValue.html#toBool--">toBool</a></span>()</code>
<div class="block">The boolean value of this primitive</div>
</td>
</tr>
<tr id="i6" class="altColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/DoubleValue.html#toDouble--">toDouble</a></span>()</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/DoubleValue.html#toDouble--">toDouble</a></span>()</code>
<div class="block">The double value of this primitive</div>
</td>
</tr>
<tr id="i7" class="rowColor">
<td class="colFirst"><code>long</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/DoubleValue.html#toLong--">toLong</a></span>()</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/DoubleValue.html#toLong--">toLong</a></span>()</code>
<div class="block">The long value of this primitive</div>
</td>
</tr>
<tr id="i8" class="altColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/DoubleValue.html#toRawString--">toRawString</a></span>()</code>
<div class="block">An unescaped string encoding of this primitive value.</div>
</td>
</tr>
<tr id="i9" class="rowColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/DoubleValue.html#toString--">toString</a></span>()</code>&nbsp;</td>
</tr>
</table>
@ -325,6 +337,23 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
<pre>public&nbsp;void&nbsp;setValue(double&nbsp;d)</pre>
</li>
</ul>
<a name="toRawString--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>toRawString</h4>
<pre>public&nbsp;java.lang.String&nbsp;toRawString()</pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toRawString--">PrimitiveValue</a></code></span></div>
<div class="block">An unescaped string encoding of this primitive value. (toString() returns an escaped string)</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toRawString--">toRawString</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The unescaped string encoding of this primitive value</dd>
</dl>
</li>
</ul>
<a name="toString--">
<!-- -->
</a>
@ -346,11 +375,15 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
<h4>toLong</h4>
<pre>public&nbsp;long&nbsp;toLong()
throws <a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toLong--">PrimitiveValue</a></code></span></div>
<div class="block">The long value of this primitive</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toLong--">toLong</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The long value of this primitive if it is a LongPrimitive</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code></dd>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code> - otherwise</dd>
</dl>
</li>
</ul>
@ -361,9 +394,13 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
<li class="blockList">
<h4>toDouble</h4>
<pre>public&nbsp;double&nbsp;toDouble()</pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toDouble--">PrimitiveValue</a></code></span></div>
<div class="block">The double value of this primitive</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toDouble--">toDouble</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The double value of this primitive if it is a LongPrimitive or DoublePrimitive</dd>
</dl>
</li>
</ul>
@ -375,11 +412,15 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
<h4>toBool</h4>
<pre>public&nbsp;boolean&nbsp;toBool()
throws <a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toBool--">PrimitiveValue</a></code></span></div>
<div class="block">The boolean value of this primitive</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toBool--">toBool</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The boolean value of this primitive if it is a BoolPrimitive</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code></dd>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code> - otherwise</dd>
</dl>
</li>
</ul>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Expression</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>ExpressionVisitor</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>ExpressionVisitorBase</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Function</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>InverseExpression</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>JdbcParameter</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>LongValue</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -18,7 +18,7 @@
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10};
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@ -215,18 +215,30 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
</tr>
<tr id="i5" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/LongValue.html#toBool--">toBool</a></span>()</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/LongValue.html#toBool--">toBool</a></span>()</code>
<div class="block">The boolean value of this primitive</div>
</td>
</tr>
<tr id="i6" class="altColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/LongValue.html#toDouble--">toDouble</a></span>()</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/LongValue.html#toDouble--">toDouble</a></span>()</code>
<div class="block">The double value of this primitive</div>
</td>
</tr>
<tr id="i7" class="rowColor">
<td class="colFirst"><code>long</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/LongValue.html#toLong--">toLong</a></span>()</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/LongValue.html#toLong--">toLong</a></span>()</code>
<div class="block">The long value of this primitive</div>
</td>
</tr>
<tr id="i8" class="altColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/LongValue.html#toRawString--">toRawString</a></span>()</code>
<div class="block">An unescaped string encoding of this primitive value.</div>
</td>
</tr>
<tr id="i9" class="rowColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/LongValue.html#toString--">toString</a></span>()</code>&nbsp;</td>
</tr>
</table>
@ -325,6 +337,23 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
<pre>public&nbsp;void&nbsp;setValue(long&nbsp;d)</pre>
</li>
</ul>
<a name="toRawString--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>toRawString</h4>
<pre>public&nbsp;java.lang.String&nbsp;toRawString()</pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toRawString--">PrimitiveValue</a></code></span></div>
<div class="block">An unescaped string encoding of this primitive value. (toString() returns an escaped string)</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toRawString--">toRawString</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The unescaped string encoding of this primitive value</dd>
</dl>
</li>
</ul>
<a name="toString--">
<!-- -->
</a>
@ -345,9 +374,13 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
<li class="blockList">
<h4>toLong</h4>
<pre>public&nbsp;long&nbsp;toLong()</pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toLong--">PrimitiveValue</a></code></span></div>
<div class="block">The long value of this primitive</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toLong--">toLong</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The long value of this primitive if it is a LongPrimitive</dd>
</dl>
</li>
</ul>
@ -358,9 +391,13 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
<li class="blockList">
<h4>toDouble</h4>
<pre>public&nbsp;double&nbsp;toDouble()</pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toDouble--">PrimitiveValue</a></code></span></div>
<div class="block">The double value of this primitive</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toDouble--">toDouble</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The double value of this primitive if it is a LongPrimitive or DoublePrimitive</dd>
</dl>
</li>
</ul>
@ -372,11 +409,15 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
<h4>toBool</h4>
<pre>public&nbsp;boolean&nbsp;toBool()
throws <a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toBool--">PrimitiveValue</a></code></span></div>
<div class="block">The boolean value of this primitive</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toBool--">toBool</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The boolean value of this primitive if it is a BoolPrimitive</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code></dd>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code> - otherwise</dd>
</dl>
</li>
</ul>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>NullValue</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -18,7 +18,7 @@
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10};
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@ -185,18 +185,30 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/NullValue.html#toBool--">toBool</a></span>()</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/NullValue.html#toBool--">toBool</a></span>()</code>
<div class="block">The boolean value of this primitive</div>
</td>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/NullValue.html#toDouble--">toDouble</a></span>()</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/NullValue.html#toDouble--">toDouble</a></span>()</code>
<div class="block">The double value of this primitive</div>
</td>
</tr>
<tr id="i5" class="rowColor">
<td class="colFirst"><code>long</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/NullValue.html#toLong--">toLong</a></span>()</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/NullValue.html#toLong--">toLong</a></span>()</code>
<div class="block">The long value of this primitive</div>
</td>
</tr>
<tr id="i6" class="altColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/NullValue.html#toRawString--">toRawString</a></span>()</code>
<div class="block">An unescaped string encoding of this primitive value.</div>
</td>
</tr>
<tr id="i7" class="rowColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/NullValue.html#toString--">toString</a></span>()</code>&nbsp;</td>
</tr>
</table>
@ -251,6 +263,23 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
</dl>
</li>
</ul>
<a name="toRawString--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>toRawString</h4>
<pre>public&nbsp;java.lang.String&nbsp;toRawString()</pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toRawString--">PrimitiveValue</a></code></span></div>
<div class="block">An unescaped string encoding of this primitive value. (toString() returns an escaped string)</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toRawString--">toRawString</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The unescaped string encoding of this primitive value</dd>
</dl>
</li>
</ul>
<a name="toString--">
<!-- -->
</a>
@ -272,11 +301,15 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
<h4>toLong</h4>
<pre>public&nbsp;long&nbsp;toLong()
throws <a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toLong--">PrimitiveValue</a></code></span></div>
<div class="block">The long value of this primitive</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toLong--">toLong</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The long value of this primitive if it is a LongPrimitive</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code></dd>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code> - otherwise</dd>
</dl>
</li>
</ul>
@ -288,11 +321,15 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
<h4>toDouble</h4>
<pre>public&nbsp;double&nbsp;toDouble()
throws <a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toDouble--">PrimitiveValue</a></code></span></div>
<div class="block">The double value of this primitive</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toDouble--">toDouble</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The double value of this primitive if it is a LongPrimitive or DoublePrimitive</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code></dd>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code> - otherwise</dd>
</dl>
</li>
</ul>
@ -304,11 +341,15 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
<h4>toBool</h4>
<pre>public&nbsp;boolean&nbsp;toBool()
throws <a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toBool--">PrimitiveValue</a></code></span></div>
<div class="block">The boolean value of this primitive</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toBool--">toBool</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The boolean value of this primitive if it is a BoolPrimitive</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code></dd>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code> - otherwise</dd>
</dl>
</li>
</ul>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>PrimitiveValue.InvalidPrimitive</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>PrimitiveValue</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -18,7 +18,7 @@
catch(err) {
}
//-->
var methods = {"i0":6,"i1":6,"i2":6,"i3":6};
var methods = {"i0":6,"i1":6,"i2":6,"i3":6,"i4":6};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@ -155,15 +155,27 @@ extends java.io.Serializable</pre>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toBool--">toBool</a></span>()</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toBool--">toBool</a></span>()</code>
<div class="block">The boolean value of this primitive</div>
</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toDouble--">toDouble</a></span>()</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toDouble--">toDouble</a></span>()</code>
<div class="block">The double value of this primitive</div>
</td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code>long</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toLong--">toLong</a></span>()</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toLong--">toLong</a></span>()</code>
<div class="block">The long value of this primitive</div>
</td>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toRawString--">toRawString</a></span>()</code>
<div class="block">An unescaped string encoding of this primitive value.</div>
</td>
</tr>
</table>
</li>
@ -188,9 +200,12 @@ extends java.io.Serializable</pre>
<h4>toLong</h4>
<pre>long&nbsp;toLong()
throws <a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></pre>
<div class="block">The long value of this primitive</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The long value of this primitive if it is a LongPrimitive</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code></dd>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code> - otherwise</dd>
</dl>
</li>
</ul>
@ -202,9 +217,12 @@ extends java.io.Serializable</pre>
<h4>toDouble</h4>
<pre>double&nbsp;toDouble()
throws <a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></pre>
<div class="block">The double value of this primitive</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The double value of this primitive if it is a LongPrimitive or DoublePrimitive</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code></dd>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code> - otherwise</dd>
</dl>
</li>
</ul>
@ -216,9 +234,26 @@ extends java.io.Serializable</pre>
<h4>toBool</h4>
<pre>boolean&nbsp;toBool()
throws <a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></pre>
<div class="block">The boolean value of this primitive</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The boolean value of this primitive if it is a BoolPrimitive</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code></dd>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code> - otherwise</dd>
</dl>
</li>
</ul>
<a name="toRawString--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>toRawString</h4>
<pre>java.lang.String&nbsp;toRawString()</pre>
<div class="block">An unescaped string encoding of this primitive value. (toString() returns an escaped string)</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The unescaped string encoding of this primitive value</dd>
</dl>
</li>
</ul>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>StringValue</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -18,7 +18,7 @@
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":9,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10};
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":9,"i6":10,"i7":10,"i8":10,"i9":10,"i10":10,"i11":10};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@ -220,18 +220,30 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
</tr>
<tr id="i7" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/StringValue.html#toBool--">toBool</a></span>()</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/StringValue.html#toBool--">toBool</a></span>()</code>
<div class="block">The boolean value of this primitive</div>
</td>
</tr>
<tr id="i8" class="altColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/StringValue.html#toDouble--">toDouble</a></span>()</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/StringValue.html#toDouble--">toDouble</a></span>()</code>
<div class="block">The double value of this primitive</div>
</td>
</tr>
<tr id="i9" class="rowColor">
<td class="colFirst"><code>long</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/StringValue.html#toLong--">toLong</a></span>()</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/StringValue.html#toLong--">toLong</a></span>()</code>
<div class="block">The long value of this primitive</div>
</td>
</tr>
<tr id="i10" class="altColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/StringValue.html#toRawString--">toRawString</a></span>()</code>
<div class="block">An unescaped string encoding of this primitive value.</div>
</td>
</tr>
<tr id="i11" class="rowColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/StringValue.html#toString--">toString</a></span>()</code>&nbsp;</td>
</tr>
</table>
@ -339,6 +351,23 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
</dl>
</li>
</ul>
<a name="toRawString--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>toRawString</h4>
<pre>public&nbsp;java.lang.String&nbsp;toRawString()</pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toRawString--">PrimitiveValue</a></code></span></div>
<div class="block">An unescaped string encoding of this primitive value. (toString() returns an escaped string)</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toRawString--">toRawString</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The unescaped string encoding of this primitive value</dd>
</dl>
</li>
</ul>
<a name="toString--">
<!-- -->
</a>
@ -360,11 +389,15 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
<h4>toLong</h4>
<pre>public&nbsp;long&nbsp;toLong()
throws <a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toLong--">PrimitiveValue</a></code></span></div>
<div class="block">The long value of this primitive</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toLong--">toLong</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The long value of this primitive if it is a LongPrimitive</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code></dd>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code> - otherwise</dd>
</dl>
</li>
</ul>
@ -376,11 +409,15 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
<h4>toDouble</h4>
<pre>public&nbsp;double&nbsp;toDouble()
throws <a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toDouble--">PrimitiveValue</a></code></span></div>
<div class="block">The double value of this primitive</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toDouble--">toDouble</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The double value of this primitive if it is a LongPrimitive or DoublePrimitive</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code></dd>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code> - otherwise</dd>
</dl>
</li>
</ul>
@ -392,11 +429,15 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
<h4>toBool</h4>
<pre>public&nbsp;boolean&nbsp;toBool()
throws <a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toBool--">PrimitiveValue</a></code></span></div>
<div class="block">The boolean value of this primitive</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toBool--">toBool</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The boolean value of this primitive if it is a BoolPrimitive</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code></dd>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code> - otherwise</dd>
</dl>
</li>
</ul>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>TimeValue</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -18,7 +18,7 @@
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10};
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@ -212,18 +212,30 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
</tr>
<tr id="i5" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/TimeValue.html#toBool--">toBool</a></span>()</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/TimeValue.html#toBool--">toBool</a></span>()</code>
<div class="block">The boolean value of this primitive</div>
</td>
</tr>
<tr id="i6" class="altColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/TimeValue.html#toDouble--">toDouble</a></span>()</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/TimeValue.html#toDouble--">toDouble</a></span>()</code>
<div class="block">The double value of this primitive</div>
</td>
</tr>
<tr id="i7" class="rowColor">
<td class="colFirst"><code>long</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/TimeValue.html#toLong--">toLong</a></span>()</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/TimeValue.html#toLong--">toLong</a></span>()</code>
<div class="block">The long value of this primitive</div>
</td>
</tr>
<tr id="i8" class="altColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/TimeValue.html#toRawString--">toRawString</a></span>()</code>
<div class="block">An unescaped string encoding of this primitive value.</div>
</td>
</tr>
<tr id="i9" class="rowColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/TimeValue.html#toString--">toString</a></span>()</code>&nbsp;</td>
</tr>
</table>
@ -313,6 +325,23 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
<pre>public&nbsp;void&nbsp;setValue(java.sql.Time&nbsp;d)</pre>
</li>
</ul>
<a name="toRawString--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>toRawString</h4>
<pre>public&nbsp;java.lang.String&nbsp;toRawString()</pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toRawString--">PrimitiveValue</a></code></span></div>
<div class="block">An unescaped string encoding of this primitive value. (toString() returns an escaped string)</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toRawString--">toRawString</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The unescaped string encoding of this primitive value</dd>
</dl>
</li>
</ul>
<a name="toString--">
<!-- -->
</a>
@ -334,11 +363,15 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
<h4>toLong</h4>
<pre>public&nbsp;long&nbsp;toLong()
throws <a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toLong--">PrimitiveValue</a></code></span></div>
<div class="block">The long value of this primitive</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toLong--">toLong</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The long value of this primitive if it is a LongPrimitive</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code></dd>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code> - otherwise</dd>
</dl>
</li>
</ul>
@ -350,11 +383,15 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
<h4>toDouble</h4>
<pre>public&nbsp;double&nbsp;toDouble()
throws <a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toDouble--">PrimitiveValue</a></code></span></div>
<div class="block">The double value of this primitive</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toDouble--">toDouble</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The double value of this primitive if it is a LongPrimitive or DoublePrimitive</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code></dd>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code> - otherwise</dd>
</dl>
</li>
</ul>
@ -366,11 +403,15 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
<h4>toBool</h4>
<pre>public&nbsp;boolean&nbsp;toBool()
throws <a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toBool--">PrimitiveValue</a></code></span></div>
<div class="block">The boolean value of this primitive</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toBool--">toBool</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The boolean value of this primitive if it is a BoolPrimitive</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code></dd>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code> - otherwise</dd>
</dl>
</li>
</ul>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>TimestampValue</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
@ -18,7 +18,7 @@
catch(err) {
}
//-->
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10};
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":10};
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
@ -212,18 +212,30 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
</tr>
<tr id="i5" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/TimestampValue.html#toBool--">toBool</a></span>()</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/TimestampValue.html#toBool--">toBool</a></span>()</code>
<div class="block">The boolean value of this primitive</div>
</td>
</tr>
<tr id="i6" class="altColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/TimestampValue.html#toDouble--">toDouble</a></span>()</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/TimestampValue.html#toDouble--">toDouble</a></span>()</code>
<div class="block">The double value of this primitive</div>
</td>
</tr>
<tr id="i7" class="rowColor">
<td class="colFirst"><code>long</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/TimestampValue.html#toLong--">toLong</a></span>()</code>&nbsp;</td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/TimestampValue.html#toLong--">toLong</a></span>()</code>
<div class="block">The long value of this primitive</div>
</td>
</tr>
<tr id="i8" class="altColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/TimestampValue.html#toRawString--">toRawString</a></span>()</code>
<div class="block">An unescaped string encoding of this primitive value.</div>
</td>
</tr>
<tr id="i9" class="rowColor">
<td class="colFirst"><code>java.lang.String</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../net/sf/jsqlparser/expression/TimestampValue.html#toString--">toString</a></span>()</code>&nbsp;</td>
</tr>
</table>
@ -313,6 +325,23 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
<pre>public&nbsp;void&nbsp;setValue(java.sql.Timestamp&nbsp;d)</pre>
</li>
</ul>
<a name="toRawString--">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>toRawString</h4>
<pre>public&nbsp;java.lang.String&nbsp;toRawString()</pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toRawString--">PrimitiveValue</a></code></span></div>
<div class="block">An unescaped string encoding of this primitive value. (toString() returns an escaped string)</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toRawString--">toRawString</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The unescaped string encoding of this primitive value</dd>
</dl>
</li>
</ul>
<a name="toString--">
<!-- -->
</a>
@ -334,11 +363,15 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
<h4>toLong</h4>
<pre>public&nbsp;long&nbsp;toLong()
throws <a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toLong--">PrimitiveValue</a></code></span></div>
<div class="block">The long value of this primitive</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toLong--">toLong</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The long value of this primitive if it is a LongPrimitive</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code></dd>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code> - otherwise</dd>
</dl>
</li>
</ul>
@ -350,11 +383,15 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
<h4>toDouble</h4>
<pre>public&nbsp;double&nbsp;toDouble()
throws <a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toDouble--">PrimitiveValue</a></code></span></div>
<div class="block">The double value of this primitive</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toDouble--">toDouble</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The double value of this primitive if it is a LongPrimitive or DoublePrimitive</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code></dd>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code> - otherwise</dd>
</dl>
</li>
</ul>
@ -366,11 +403,15 @@ implements <a href="../../../../net/sf/jsqlparser/expression/Expression.html" ti
<h4>toBool</h4>
<pre>public&nbsp;boolean&nbsp;toBool()
throws <a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></pre>
<div class="block"><span class="descfrmTypeLabel">Description copied from interface:&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toBool--">PrimitiveValue</a></code></span></div>
<div class="block">The boolean value of this primitive</div>
<dl>
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toBool--">toBool</a></code>&nbsp;in interface&nbsp;<code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.html" title="interface in net.sf.jsqlparser.expression">PrimitiveValue</a></code></dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>The boolean value of this primitive if it is a BoolPrimitive</dd>
<dt><span class="throwsLabel">Throws:</span></dt>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code></dd>
<dd><code><a href="../../../../net/sf/jsqlparser/expression/PrimitiveValue.InvalidPrimitive.html" title="class in net.sf.jsqlparser.expression">PrimitiveValue.InvalidPrimitive</a></code> - otherwise</dd>
</dl>
</li>
</ul>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>WhenClause</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Uses of Class net.sf.jsqlparser.expression.AllComparisonExpression</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Uses of Class net.sf.jsqlparser.expression.AnyComparisonExpression</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Uses of Class net.sf.jsqlparser.expression.BinaryExpression</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Uses of Class net.sf.jsqlparser.expression.BooleanValue</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Uses of Class net.sf.jsqlparser.expression.CaseExpression</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Uses of Class net.sf.jsqlparser.expression.DateValue</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
@ -122,6 +122,19 @@
</a>
<h3>Uses of <a href="../../../../../net/sf/jsqlparser/expression/DateValue.html" title="class in net.sf.jsqlparser.expression">DateValue</a> in <a href="../../../../../net/sf/jsqlparser/expression/package-summary.html">net.sf.jsqlparser.expression</a></h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../net/sf/jsqlparser/expression/package-summary.html">net.sf.jsqlparser.expression</a> that return <a href="../../../../../net/sf/jsqlparser/expression/DateValue.html" title="class in net.sf.jsqlparser.expression">DateValue</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../../net/sf/jsqlparser/expression/DateValue.html" title="class in net.sf.jsqlparser.expression">DateValue</a></code></td>
<td class="colLast"><span class="typeNameLabel">DateValue.</span><code><span class="memberNameLink"><a href="../../../../../net/sf/jsqlparser/expression/DateValue.html#parseEscaped-java.lang.String-">parseEscaped</a></span>(java.lang.String&nbsp;escapedValue)</code>&nbsp;</td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation">
<caption><span>Methods in <a href="../../../../../net/sf/jsqlparser/expression/package-summary.html">net.sf.jsqlparser.expression</a> with parameters of type <a href="../../../../../net/sf/jsqlparser/expression/DateValue.html" title="class in net.sf.jsqlparser.expression">DateValue</a></span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Uses of Class net.sf.jsqlparser.expression.DoubleValue</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Uses of Interface net.sf.jsqlparser.expression.Expression</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Uses of Interface net.sf.jsqlparser.expression.ExpressionVisitor</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Uses of Class net.sf.jsqlparser.expression.ExpressionVisitorBase</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Uses of Class net.sf.jsqlparser.expression.Function</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Uses of Class net.sf.jsqlparser.expression.InverseExpression</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Uses of Class net.sf.jsqlparser.expression.JdbcParameter</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Uses of Class net.sf.jsqlparser.expression.LongValue</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Uses of Class net.sf.jsqlparser.expression.NullValue</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Uses of Class net.sf.jsqlparser.expression.PrimitiveValue.InvalidPrimitive</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>
@ -120,7 +120,9 @@
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><span class="typeNameLabel">PrimitiveValue.</span><code><span class="memberNameLink"><a href="../../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toBool--">toBool</a></span>()</code>&nbsp;</td>
<td class="colLast"><span class="typeNameLabel">PrimitiveValue.</span><code><span class="memberNameLink"><a href="../../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toBool--">toBool</a></span>()</code>
<div class="block">The boolean value of this primitive</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
@ -144,7 +146,9 @@
</tr>
<tr class="altColor">
<td class="colFirst"><code>double</code></td>
<td class="colLast"><span class="typeNameLabel">PrimitiveValue.</span><code><span class="memberNameLink"><a href="../../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toDouble--">toDouble</a></span>()</code>&nbsp;</td>
<td class="colLast"><span class="typeNameLabel">PrimitiveValue.</span><code><span class="memberNameLink"><a href="../../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toDouble--">toDouble</a></span>()</code>
<div class="block">The double value of this primitive</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>double</code></td>
@ -172,7 +176,9 @@
</tr>
<tr class="rowColor">
<td class="colFirst"><code>long</code></td>
<td class="colLast"><span class="typeNameLabel">PrimitiveValue.</span><code><span class="memberNameLink"><a href="../../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toLong--">toLong</a></span>()</code>&nbsp;</td>
<td class="colLast"><span class="typeNameLabel">PrimitiveValue.</span><code><span class="memberNameLink"><a href="../../../../../net/sf/jsqlparser/expression/PrimitiveValue.html#toLong--">toLong</a></span>()</code>
<div class="block">The long value of this primitive</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>long</code></td>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Uses of Interface net.sf.jsqlparser.expression.PrimitiveValue</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Uses of Class net.sf.jsqlparser.expression.StringValue</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Uses of Class net.sf.jsqlparser.expression.TimeValue</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Uses of Class net.sf.jsqlparser.expression.TimestampValue</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Uses of Class net.sf.jsqlparser.expression.WhenClause</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Addition</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>BitwiseAnd</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>BitwiseOr</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>BitwiseXor</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Concat</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../script.js"></script>
</head>

View file

@ -2,9 +2,9 @@
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc (1.8.0_51) on Tue Feb 02 19:07:55 EST 2016 -->
<!-- Generated by javadoc (1.8.0_65) on Fri Feb 05 00:50:56 EST 2016 -->
<title>Division</title>
<meta name="date" content="2016-02-02">
<meta name="date" content="2016-02-05">
<link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../../../script.js"></script>
</head>

Some files were not shown because too many files have changed in this diff Show more