/*- * See the file LICENSE for redistribution information. * * Copyright (c) 1997, 1998, 1999, 2000 * Sleepycat Software. All rights reserved. * * $Id: DbKeyRange.java,v 1.1 2000/04/12 15:07:02 dda Exp $ */ package com.sleepycat.db; /** * * @author Donald D. Anderson */ public class DbKeyRange { public double less; public double equal; public double greater; } // end of DbKeyRange.java