diff options
| author | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2016-03-27 11:16:15 +0200 |
|---|---|---|
| committer | manzerbredes <loic.guegan_secondary@yahoo.fr> | 2016-03-27 11:16:15 +0200 |
| commit | d730c933095d496f5f2c56350fd77b994d3bb1f7 (patch) | |
| tree | 00f1ab1d7a2b8547c35220dcab16752102b73e67 /src/device/Keyboard.java | |
| parent | 2f6e8630795c6de5cbe9aaf937f3b680d20059e1 (diff) | |
Create method
Diffstat (limited to 'src/device/Keyboard.java')
| -rw-r--r-- | src/device/Keyboard.java | 78 |
1 files changed, 0 insertions, 78 deletions
diff --git a/src/device/Keyboard.java b/src/device/Keyboard.java index 58e6dd6..4a594f1 100644 --- a/src/device/Keyboard.java +++ b/src/device/Keyboard.java @@ -2,85 +2,7 @@ package org.manzerbredes.open_klm.device; public class Keyboard{ - /** - * Defined Region Helper - * - * @author Manzerbredes - * - */ - public enum Region{ - LEFT(1), MIDDLE(2), RIGHT(3); - - private int current; - - Region(int current){ - this.current=current; - } - - public int intValue(){ - return this.current; - } - } - - /** - * Defined Color Helper - * - * @author Manzerbredes - * - */ - public enum Color{ - OFF(0),RED(1),ORANGE(2),YELLOW(3),GREEN(4),SKY(5), BLUE(6),PURPLE(7),WHITE(8); - - private int current; - - Color(int current){ - this.current=current; - } - - public int intValue(){ - return this.current; - } - } - - /** - * Defined Level Helper - * - * @author Manzerbredes - * - */ - public enum Intensity{ - HIGH(0), MEDIUM(1), LOW(2), LIGHT(3); - - private int current; - - Intensity(int current){ - this.current=current; - } - - public int intValue(){ - return this.current; - } - } - /** - * Defined Mode Helper - * - * @author Manzerbredes - * - */ - public enum Mode{ - NORMAL(1), GAMING(2), BREATHE(3), DEMO(4), WAVE(5); - - private int current; - - Mode(int current){ - this.current=current; - } - - public int intValue(){ - return this.current; - } - } |
