com.github.moaxcp.x11.protocol.xkb.ActionMessageFlag Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of x11-protocol-xkb Show documentation
Show all versions of x11-protocol-xkb Show documentation
An implementation of the x11 xkb protocol in java
The newest version!
package com.github.moaxcp.x11.protocol.xkb;
import com.github.moaxcp.x11.protocol.IntValue;
import java.util.HashMap;
import java.util.Map;
public enum ActionMessageFlag implements IntValue {
ON_PRESS(0b1),
ON_RELEASE(0b10),
GEN_KEY_EVENT(0b100);
static final Map byCode = new HashMap<>();
static {
for(ActionMessageFlag e : values()) {
byCode.put(e.value, e);
}
}
private int value;
ActionMessageFlag(int value) {
this.value = value;
}
@Override
public int getValue() {
return value;
}
public static ActionMessageFlag getByCode(int code) {
return byCode.get(code);
}
}