All Downloads are FREE. Search and download functionalities are using the official Maven repository.

fqlite.base.Gap Maven / Gradle / Ivy

package fqlite.base;

/**
 * Represents a not yet checked (slack or uncharted) area within a data page.  
 * Objects of this class are used as a marker for uncharted areas.
 * 
 * @author pawlaszc
 *
 */
public class Gap {
	int from;
	int to;

	Gap(int fromIdx, int toIdx) {
		from = fromIdx;
		to = toIdx;
	}
	
	
	public boolean equals(Gap g)
	{
		return (this.from == g.from && this.to == g.to);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy