com.mfizz.observer.jackson.Version Maven / Gradle / Ivy
/** DO NOT EDIT THIS FILE. IT IS AUTO GENERATED BY MAVEN */
package com.mfizz.observer.jackson;
public final class Version {
private static final String COMMIT="9770c6c4";
private static final String TIMESTAMP="20120910-2217";
private static final String VERSION="1.1.0";
private static final String NAME="mfz-observer-jackson";
private static final String VENDOR="com.mfizz";
private static final String LONG_VERSION="1.1.0 (commit 9770c6c4 @ 20120910-2217)";
/** Returns the library source control commit tag such as "9770c6c4" */
static public String getCommit() { return COMMIT; }
/** Returns the library vendor such as "com.mfizz" */
static public String getVendor() { return VENDOR; }
/** Returns the library build timestamp (date) such as "20120910-2217" */
static public String getTimestamp() { return TIMESTAMP; }
/** Returns the library name such as "mfz-observer-jackson" */
static public String getName() { return NAME; }
/** Returns the library version such as "1.1.0" */
static public String getVersion() { return VERSION; }
/** Returns a longer library version that includes the timestamp such as "1.1.0 (commit 9770c6c4; ts 20120910-2217)" */
static public String getLongVersion() { return LONG_VERSION; }
}