All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.moaxcp.x11client.protocol.xprint.EvMask Maven / Gradle / Ivy

There is a newer version: 0.18.2
Show newest version
package com.github.moaxcp.x11client.protocol.xprint;

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 EvMask implements IntValue {
  NO_EVENT_MASK(0),

  PRINT_MASK(0b1),

  ATTRIBUTE_MASK(0b10);

  static final Map byCode = new HashMap<>();

  static {
    for(EvMask e : values()) {
        byCode.put(e.value, e);
    }
  }

  private int value;

  EvMask(int value) {
    this.value = value;
  }

  @Override
  public int getValue() {
    return value;
  }

  public static EvMask getByCode(int code) {
    return byCode.get(code);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy