1 21 22 package org.apache.derby.iapi.store.access; 23 24 import java.io.Serializable ; 25 52 public interface DatabaseInstant 53 extends Serializable  54 { 55 56 66 public boolean lessThan(DatabaseInstant other); 67 68 78 public boolean equals(Object other); 79 80 90 public DatabaseInstant next(); 91 92 102 public DatabaseInstant prior(); 103 104 109 public String toString(); 110 } 111 | Popular Tags |