DeviceFlags.java
Go to the documentation of this file.
1 
25 package org.openkinect.freenect;
26 
27 public enum DeviceFlags {
28  MOTOR(1),
29  CAMERA(2),
30  AUDIO(4);
31 
32  private final int value;
33 
34  private DeviceFlags(int value) {
35  this.value = value;
36  }
37 
38  public int intValue() {
39  return value;
40  }
41 }


libfreenect
Author(s): Hector Martin, Josh Blake, Kyle Machulis, OpenKinect community
autogenerated on Thu Jun 6 2019 19:25:38