Package com.avpkit.core
Class Version
- java.lang.Object
-
- com.avpkit.core.Version
-
public class Version extends java.lang.Object
Contains the version numbers for this library.Use the accessor methods, not the constants, in your source code.
-
-
Field Summary
Fields Modifier and Type Field Description static intMAJOR_VERSIONstatic intMINOR_VERSIONstatic intREVISIONstatic java.lang.StringVERSION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static intgetMajorVersion()The Major Version Number (Currently "1").static intgetMinorVersion()The Minor Version Number (Currently "0").static intgetRevision()The Revision Number (if known) (Currently "0").static java.lang.StringgetVersionString()The Version String (Currently "1.0.0").
-
-
-
Field Detail
-
MAJOR_VERSION
public static final int MAJOR_VERSION
- See Also:
- Constant Field Values
-
MINOR_VERSION
public static final int MINOR_VERSION
- See Also:
- Constant Field Values
-
REVISION
public static final int REVISION
- See Also:
- Constant Field Values
-
VERSION
public static final java.lang.String VERSION
- See Also:
- Constant Field Values
-
-
Method Detail
-
getMajorVersion
public static int getMajorVersion()
The Major Version Number (Currently "1").- Returns:
- the major version number.
-
getMinorVersion
public static int getMinorVersion()
The Minor Version Number (Currently "0").- Returns:
- the minor version number.
-
getRevision
public static int getRevision()
The Revision Number (if known) (Currently "0").- Returns:
- the revision number, or 0 if unknown.
-
getVersionString
public static java.lang.String getVersionString()
The Version String (Currently "1.0.0").- Returns:
- the version string
-
-