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

org.hibernate.search.engine.Version Maven / Gradle / Ivy

The newest version!
/*
 * SPDX-License-Identifier: Apache-2.0
 * Copyright Red Hat Inc. and Hibernate Authors
 */
package org.hibernate.search.engine;

import org.hibernate.search.util.common.annotation.Search5DeprecatedAPI;

/**
 * @author Emmanuel Bernard
 * @author Hardy Ferentschik
 */
public final class Version {

	private Version() {
		//not allowed
	}

	/**
	 * @return A string representation of the version of Hibernate Search.
	 */
	public static String versionString() {
		// This implementation is replaced during the build with another one that returns the correct value.
		return "UNKNOWN";
	}

	/**
	 * @return A string representation of the version of Hibernate Search.
	 * @deprecated Use {@link #versionString()} instead.
	 */
	@Deprecated
	@Search5DeprecatedAPI
	public static String getVersionString() {
		return versionString();
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy