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

jnr.constants.platform.linux.aarch64.ProtocolFamily Maven / Gradle / Ivy

There is a newer version: 0.10.4
Show newest version
// WARNING: This file is autogenerated. DO NOT EDIT!
// Generated 2021-10-12 23:15:15 +0200
package jnr.constants.platform.linux.aarch64;
public enum ProtocolFamily implements jnr.constants.Constant {
PF_UNSPEC(0L),
PF_LOCAL(1L),
PF_UNIX(1L),
PF_INET(2L),
// PF_IMPLINK not defined
// PF_PUP not defined
// PF_CHAOS not defined
// PF_NS not defined
// PF_ISO not defined
// PF_OSI not defined
// PF_ECMA not defined
// PF_DATAKIT not defined
// PF_CCITT not defined
PF_SNA(22L),
PF_DECnet(12L),
// PF_DLI not defined
// PF_LAT not defined
// PF_HYLINK not defined
PF_APPLETALK(5L),
PF_ROUTE(16L),
// PF_LINK not defined
// PF_XTP not defined
// PF_COIP not defined
// PF_CNT not defined
// PF_SIP not defined
PF_IPX(4L),
// PF_RTIP not defined
// PF_PIP not defined
// PF_NDRV not defined
PF_ISDN(34L),
PF_KEY(15L),
PF_INET6(10L),
// PF_NATM not defined
// PF_SYSTEM not defined
// PF_NETBIOS not defined
// PF_PPP not defined
// PF_ATM not defined
// PF_NETGRAPH not defined
PF_NETLINK(16L),
PF_RDS(21L),
PF_PPPOX(24L),
PF_LLC(26L),
PF_IB(27L),
PF_MPLS(28L),
PF_CAN(29L),
PF_TIPC(30L),
PF_BLUETOOTH(31L),
PF_ALG(38L),
PF_VSOCK(40L),
PF_KCM(41L),
PF_XDP(44L),
PF_MAX(45L);
private final long value;
private ProtocolFamily(long value) { this.value = value; }
public static final long MIN_VALUE = 0L;
public static final long MAX_VALUE = 45L;

static final class StringTable {
  public static final java.util.Map descriptions = generateTable();
  public static final java.util.Map generateTable() {
    java.util.Map map = new java.util.EnumMap(ProtocolFamily.class);
  map.put(PF_UNSPEC, "PF_UNSPEC");
  map.put(PF_LOCAL, "PF_LOCAL");
  map.put(PF_UNIX, "PF_UNIX");
  map.put(PF_INET, "PF_INET");
  map.put(PF_SNA, "PF_SNA");
  map.put(PF_DECnet, "PF_DECnet");
  map.put(PF_APPLETALK, "PF_APPLETALK");
  map.put(PF_ROUTE, "PF_ROUTE");
  map.put(PF_IPX, "PF_IPX");
  map.put(PF_ISDN, "PF_ISDN");
  map.put(PF_KEY, "PF_KEY");
  map.put(PF_INET6, "PF_INET6");
  map.put(PF_NETLINK, "PF_NETLINK");
  map.put(PF_RDS, "PF_RDS");
  map.put(PF_PPPOX, "PF_PPPOX");
  map.put(PF_LLC, "PF_LLC");
  map.put(PF_IB, "PF_IB");
  map.put(PF_MPLS, "PF_MPLS");
  map.put(PF_CAN, "PF_CAN");
  map.put(PF_TIPC, "PF_TIPC");
  map.put(PF_BLUETOOTH, "PF_BLUETOOTH");
  map.put(PF_ALG, "PF_ALG");
  map.put(PF_VSOCK, "PF_VSOCK");
  map.put(PF_KCM, "PF_KCM");
  map.put(PF_XDP, "PF_XDP");
  map.put(PF_MAX, "PF_MAX");
    return map;
  }
}
public final String toString() { return StringTable.descriptions.get(this); }
public final int value() { return (int) value; }
public final int intValue() { return (int) value; }
public final long longValue() { return value; }
public final boolean defined() { return true; }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy