com.github.moaxcp.x11client.protocol.randr.Notify Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of x11-client Show documentation
Show all versions of x11-client Show documentation
An x11 client implemented in java
package com.github.moaxcp.x11client.protocol.randr;
import com.github.moaxcp.x11client.protocol.IntValue;
import java.lang.Integer;
import java.lang.Override;
import java.util.HashMap;
import java.util.Map;
public enum Notify implements IntValue {
CRTC_CHANGE(0),
OUTPUT_CHANGE(1),
OUTPUT_PROPERTY(2),
PROVIDER_CHANGE(3),
PROVIDER_PROPERTY(4),
RESOURCE_CHANGE(5),
LEASE(6);
static final Map byCode = new HashMap<>();
static {
for(Notify e : values()) {
byCode.put(e.value, e);
}
}
private int value;
Notify(int value) {
this.value = value;
}
@Override
public int getValue() {
return value;
}
public static Notify getByCode(int code) {
return byCode.get(code);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy