KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > h2 > command > dml > SelectOrderBy


1 /*
2  * Copyright 2004-2006 H2 Group. Licensed under the H2 License, Version 1.0 (http://h2database.com/html/license.html).
3  * Initial Developer: H2 Group
4  */

5 package org.h2.command.dml;
6
7 import org.h2.expression.Expression;
8
9 /**
10  * @author Thomas
11  */

12 public class SelectOrderBy {
13     public Expression expression;
14     public int column;
15     public boolean descending;
16     public boolean nullsFirst;
17     public boolean nullsLast;
18 }
19
Popular Tags