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

org.hibernate.util.Range Maven / Gradle / Ivy

There is a newer version: 4.2.4
Show newest version
//$Id: Range.java 3890 2004-06-03 16:31:32Z steveebersole $
package org.hibernate.util;

public final class Range {

	public static int[] range(int begin, int length) {
		int[] result = new int[length];
		for ( int i=0; i




© 2015 - 2024 Weber Informatics LLC | Privacy Policy