Class faiNumberInfo


  • public final class faiNumberInfo
    extends Object

    The faiNumberInfo class provides the version number and the package name for this package.

    Since:
    1.0.0.f
    • Field Detail

      • VERSION

        public final String VERSION

        Version number: Major.Minor.Security/BugFix.Build

        Build: (b: Beta), (rc-N: Release Candidate No.), (f: Final).

        Take note that the official online web docs for any major release version may always use the (n).0.0.f for that version and its minor, security/bugfix releases.

        Major releases will add new feature(s) and/or remove unnecessary API. Any deprecated API will not be removed until at least 3 major versions after the major version that first informed of the removal of the API. However, if it is simply a name change, the API with the old name may just redirect the call to a new name.

        Minor releases do not alter, add, nor remove any API. Minor releases are for coding layout improvement, code improvement, and/or code optimization.

        Bugfix/Security releases do not alter, add, nor remove any API. Bugfix/Security releases are releases that will fix discovered bug(s) or security loophole(s).

        See Also:
        Constant Field Values
    • Method Detail

      • VERSION_NUMBER

        public final int[] VERSION_NUMBER()

        Return an array of int that represents the VERSION number.

        [0] -> Major
        [1] -> Minor
        [2] -> Security/BugFix
        [3] -> Build(-1: Beta, 0: Final, >0: rc-N)

        Returns:
        An array of int that represents the VERSION number.
        Since:
        1.0.0.f