程序包 org.openni

类 Version


  • public class Version
    extends java.lang.Object
    Holds an OpenNI version number, which consists of four separate numbers in the format: major.minor.maintenance.build. For example: 2.0.0.20.
    • 方法概要

      所有方法 实例方法 具体方法 
      修饰符和类型 方法 说明
      int getBuild()
      This function return build number.
      int getMaintenance()
      This function return minor value.
      int getMajor()
      This function return major value.
      int getMinor()
      This function return minor value.
      • 从类继承的方法 java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 方法详细资料

      • getMajor

        public int getMajor()
        This function return major value. Major version number, incremented for major API restructuring.
        返回:
        major value
      • getMinor

        public int getMinor()
        This function return minor value. Minor version number, incremented when significant new features added.
        返回:
        minor value
      • getMaintenance

        public int getMaintenance()
        This function return minor value. Maintenance build number, incremented for new releases that primarily provide minor bug fixes.
        返回:
        maintenance value
      • getBuild

        public int getBuild()
        This function return build number. Incremented for each new API build. Generally not shown on the installer and download site.
        返回:
        build value