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

com.github.moaxcp.x11.protocol.xkb.SymInterpretMatch Maven / Gradle / Ivy

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 SymInterpretMatch implements IntValue {
  NONE_OF(0),

  ANY_OF_OR_NONE(1),

  ANY_OF(2),

  ALL_OF(3),

  EXACTLY(4);

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

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

  private int value;

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy