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

.marklogic-xcc.10.0.9.5.source-code.Version Maven / Gradle / Ivy

There is a newer version: 11.3.0
Show newest version
// Copyright (c) 2020 MarkLogic Corporation
// THIS FILE IS AUTOMATICALLY GENERATED BY THE XCC BUILD.  DO NOT EDIT.

package com.marklogic.xcc;

/**
 * Auto-generated class that defines the XCC release number.
 */
public class Version
{
	private static final int MAJOR = 10;
	private static final int MINOR = 0;
	private static final int PATCH = 9;
	private static final int PATCH2 = 5;
	private static final String VERSION_STR = "" + MAJOR + "." + MINOR + "-" + PATCH + "." + PATCH2;

	private Version() {}

	public static String getVersionString()
	{
		return (VERSION_STR);
	}

	public static int getVersionMajor()
	{
		return (MAJOR);
	}

	public static int getVersionMinor()
	{
		return (MINOR);
	}

	public static int getVersionPatch()
	{
		return (PATCH);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy