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

com.github.moaxcp.x11.protocol.xv.GrabPortStatus Maven / Gradle / Ivy

There is a newer version: 0.19.0
Show newest version
package com.github.moaxcp.x11.protocol.xv;

import com.github.moaxcp.x11.protocol.IntValue;
import java.util.HashMap;
import java.util.Map;

public enum GrabPortStatus implements IntValue {
  SUCCESS(0),

  BAD_EXTENSION(1),

  ALREADY_GRABBED(2),

  INVALID_TIME(3),

  BAD_REPLY(4),

  BAD_ALLOC(5);

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

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

  private int value;

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy