KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > h2 > expression > Condition


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.expression;
6
7 import org.h2.value.Value;
8
9 /**
10  * @author Thomas
11  */

12 public abstract class Condition extends Expression {
13
14     public int getType() {
15         return Value.BOOLEAN;
16     }
17
18     public int getScale() {
19         return 0;
20     }
21
22     public long getPrecision() {
23         return 0;
24     }
25
26 }
27
Popular Tags