/src/main/java/jnr/constants/platform/windows/SocketMessage.java

https://github.com/jnr/jnr-constants · Java · 50 lines · 27 code · 1 blank · 22 comment · 0 complexity · 98eacf3d37243bb1d04bd67025ed18c8 MD5 · raw file

  1. // WARNING: This file is autogenerated. DO NOT EDIT!
  2. // Generated 2020-08-29 19:20:40 +0200
  3. package jnr.constants.platform.windows;
  4. public enum SocketMessage implements jnr.constants.Constant {
  5. MSG_OOB(0x1L),
  6. // MSG_DONTWAIT not defined
  7. MSG_PEEK(0x2L),
  8. MSG_DONTROUTE(0x4L),
  9. // MSG_EOR not defined
  10. // MSG_TRUNC not defined
  11. // MSG_CTRUNC not defined
  12. MSG_WAITALL(0x8L);
  13. // MSG_PROXY not defined
  14. // MSG_FIN not defined
  15. // MSG_SYN not defined
  16. // MSG_CONFIRM not defined
  17. // MSG_RST not defined
  18. // MSG_ERRQUEUE not defined
  19. // MSG_NOSIGNAL not defined
  20. // MSG_MORE not defined
  21. // MSG_FASTOPEN not defined
  22. // MSG_EOF not defined
  23. // MSG_FLUSH not defined
  24. // MSG_HOLD not defined
  25. // MSG_SEND not defined
  26. // MSG_HAVEMORE not defined
  27. // MSG_RCVMORE not defined
  28. // MSG_COMPAT not defined
  29. private final long value;
  30. private SocketMessage(long value) { this.value = value; }
  31. public static final long MIN_VALUE = 0x1L;
  32. public static final long MAX_VALUE = 0x8L;
  33. static final class StringTable {
  34. public static final java.util.Map<SocketMessage, String> descriptions = generateTable();
  35. public static final java.util.Map<SocketMessage, String> generateTable() {
  36. java.util.Map<SocketMessage, String> map = new java.util.EnumMap<SocketMessage, String>(SocketMessage.class);
  37. map.put(MSG_OOB, "MSG_OOB");
  38. map.put(MSG_PEEK, "MSG_PEEK");
  39. map.put(MSG_DONTROUTE, "MSG_DONTROUTE");
  40. map.put(MSG_WAITALL, "MSG_WAITALL");
  41. return map;
  42. }
  43. }
  44. public final String toString() { return StringTable.descriptions.get(this); }
  45. public final int value() { return (int) value; }
  46. public final int intValue() { return (int) value; }
  47. public final long longValue() { return value; }
  48. public final boolean defined() { return true; }
  49. }