KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > daffodilwoods > daffodildb > server > sql99 > token > hexstringliteral


1 package com.daffodilwoods.daffodildb.server.sql99.token;
2
3 import java.util.*;
4
5 import com.daffodilwoods.daffodildb.server.serversystem.*;
6 import com.daffodilwoods.daffodildb.server.sql99.common.*;
7 import com.daffodilwoods.daffodildb.server.sql99.expression.*;
8 import com.daffodilwoods.daffodildb.server.sql99.expression.expressionprimary.*;
9 import com.daffodilwoods.daffodildb.server.sql99.utils.*;
10 import com.daffodilwoods.database.resource.*;
11
12 public class hexstringliteral implements com.daffodilwoods.daffodildb.utils.parser.StatementExecuter, generalliteral, nondelimitertoken, RowValueExpressionSuper, valueexpression {
13
14    public hexitstringliteralrepresentation _hexitstringliteralrepresentation0;
15    public xrule _xrule1;
16
17    public hexstringliteral() {
18    }
19
20    public Object JavaDoc run(Object JavaDoc object) throws DException {
21       return null;
22    }
23
24    public Object JavaDoc clone() throws CloneNotSupportedException JavaDoc {
25       hexstringliteral tempClass = new hexstringliteral();
26       tempClass._hexitstringliteralrepresentation0 = (hexitstringliteralrepresentation) _hexitstringliteralrepresentation0.clone();
27       tempClass._xrule1 = (xrule) _xrule1.clone();
28       return tempClass;
29    }
30
31    public String JavaDoc toString() {
32       StringBuffer JavaDoc sb = new StringBuffer JavaDoc();
33       sb.append(" ");
34       sb.append(_xrule1);
35       sb.append("'");
36       sb.append(_hexitstringliteralrepresentation0);
37       sb.append("'");
38       return sb.toString();
39    }
40
41    public void setDefaultValues(_VariableValueOperations variableValueOperations) throws DException {
42       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.expression.RowValueExpressionSuper method*/
43       throw new java.lang.UnsupportedOperationException JavaDoc("Method setDefaultValues() not yet implemented.");
44    }
45
46    public boolean checkForSubQuery() throws DException {
47       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.expression.RowValueExpressionSuper method*/
48       throw new java.lang.UnsupportedOperationException JavaDoc("Method checkForSubQuery() not yet implemented.");
49    }
50
51    public _Reference[] getReferences(TableDetails[] tableDetails) throws DException {
52       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.expression.RowValueExpressionSuper method*/
53       throw new java.lang.UnsupportedOperationException JavaDoc("Method getReferences() not yet implemented.");
54    }
55
56    public ColumnDetails[] getColumnDetails() throws DException {
57       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.expression.RowValueExpressionSuper method*/
58       throw new java.lang.UnsupportedOperationException JavaDoc("Method getColumnDetails() not yet implemented.");
59    }
60
61    public _Reference[] checkSemantic(_ServerSession parent) throws DException {
62       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.expression.RowValueExpressionSuper method*/
63       throw new java.lang.UnsupportedOperationException JavaDoc("Method checkSemantic() not yet implemented.");
64    }
65
66    public int getCardinality() throws DException {
67       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.expression.RowValueExpressionSuper method*/
68       throw new java.lang.UnsupportedOperationException JavaDoc("Method getCardinality() not yet implemented.");
69    }
70
71    public ParameterInfo[] getParameterInfo() throws DException {
72       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.expression.RowValueExpressionSuper method*/
73       throw new java.lang.UnsupportedOperationException JavaDoc("Method getParameterInfo() not yet implemented.");
74    }
75
76    public void getColumnsIncluded(ArrayList aList) throws DException {
77       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.expression.RowValueExpressionSuper method*/
78       throw new java.lang.UnsupportedOperationException JavaDoc("Method getColumnsIncluded() not yet implemented.");
79    }
80
81    public void getTablesIncluded(ArrayList aList) throws DException {
82       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.expression.RowValueExpressionSuper method*/
83       throw new java.lang.UnsupportedOperationException JavaDoc("Method getTablesIncluded() not yet implemented.");
84    }
85
86    public ByteComparison getByteComparison(Object JavaDoc object) throws DException {
87       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.expression.RowValueExpressionSuper method*/
88       throw new java.lang.UnsupportedOperationException JavaDoc("Method getByteComparison() not yet implemented.");
89    }
90
91    public void releaseResource() throws DException {
92       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.expression.RowValueExpressionSuper method*/
93       throw new java.lang.UnsupportedOperationException JavaDoc("Method releaseResource() not yet implemented.");
94    }
95
96    public Object JavaDoc[] getParameters(Object JavaDoc object) throws DException {
97       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.common.Parameters method*/
98       throw new java.lang.UnsupportedOperationException JavaDoc("Method getParameters() not yet implemented.");
99    }
100
101    public byte[][] getByte(_VariableValues variableValues) throws DException {
102       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.expression.valueexpression method*/
103       throw new java.lang.UnsupportedOperationException JavaDoc("Method getByte() not yet implemented.");
104    }
105
106    public Object JavaDoc getObject(_VariableValues variableValues) throws DException {
107       /**@todo Implement this com.daffodilwoods.daffodildb.server.sql99.expression.valueexpression method*/
108       throw new java.lang.UnsupportedOperationException JavaDoc("Method getObject() not yet implemented.");
109    }
110
111    public int getType() {
112       return OTHERS;
113    }
114 }
115
Popular Tags