com.github.moaxcp.x11.protocol.xkb.Id 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 Id implements IntValue {
USE_CORE_KBD(256),
USE_CORE_PTR(512),
DFLT_X_I_CLASS(768),
DFLT_X_I_ID(1024),
ALL_X_I_CLASS(1280),
ALL_X_I_ID(1536),
X_I_NONE(65280);
static final Map byCode = new HashMap<>();
static {
for(Id e : values()) {
byCode.put(e.value, e);
}
}
private int value;
Id(int value) {
this.value = value;
}
@Override
public int getValue() {
return value;
}
public static Id getByCode(int code) {
return byCode.get(code);
}
}