Package com.sleepycat.bind.tuple

Examples of com.sleepycat.bind.tuple.SortedDoubleBinding


        SortedDoubleBinding.doubleToEntry(123.123, entry);
  assertEquals(8, entry.getData().length);
        assertTrue(123.123 == SortedDoubleBinding.entryToDouble(entry));

        new SortedDoubleBinding().objectToEntry(new Double(123.123), entry);
  assertEquals(8, entry.getData().length);
        forMoreCoverageTest(new SortedDoubleBinding(),
                            new Double(123.123));
    }
View Full Code Here

TOP

Related Classes of com.sleepycat.bind.tuple.SortedDoubleBinding

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.