KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > daffodilwoods > database > utility > IntegerPool


1 package com.daffodilwoods.database.utility;
2
3 import com.daffodilwoods.daffodildb.utils.field.*;
4 import com.daffodilwoods.daffodildb.server.datasystem.interfaces.Datatype;
5 public interface IntegerPool {
6
7   public static final FieldBase Integer1 = new FieldBooleanLiteral(1,Datatype.BOOLEAN);
8   public static final FieldBase Integer0 = new FieldBooleanLiteral(0,Datatype.BOOLEAN);
9   public static final FieldBase Integer_1 = new FieldBooleanLiteral(-1,Datatype.BOOLEAN);
10   public static final FieldBase Integer2 = new FieldBooleanLiteral(2,Datatype.BOOLEAN);
11   public static final FieldBase Integer_2 = new FieldBooleanLiteral(-2,Datatype.BOOLEAN);
12 }
13
14
Popular Tags