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

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

// 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 = 11;
	private static final int MINOR = 3;
	private static final int PATCH = 1;
	private static final String VERSION_STR = "" + MAJOR + "." + MINOR + "-" + PATCH;

	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