Enum ProgType

    • Enum Constant Detail

      • UNSPEC

        public static final ProgType UNSPEC
      • SOCKET_FILTER

        public static final ProgType SOCKET_FILTER
      • KPROBE

        public static final ProgType KPROBE
      • SCHED_CLS

        public static final ProgType SCHED_CLS
      • SCHED_ACT

        public static final ProgType SCHED_ACT
      • TRACEPOINT

        public static final ProgType TRACEPOINT
      • PERF_EVENT

        public static final ProgType PERF_EVENT
      • CGROUP_SKB

        public static final ProgType CGROUP_SKB
      • CGROUP_SOCK

        public static final ProgType CGROUP_SOCK
      • LWT_IN

        public static final ProgType LWT_IN
      • LWT_OUT

        public static final ProgType LWT_OUT
      • LWT_XMIT

        public static final ProgType LWT_XMIT
      • SOCK_OPS

        public static final ProgType SOCK_OPS
      • SK_SKB

        public static final ProgType SK_SKB
      • CGROUP_DEVICE

        public static final ProgType CGROUP_DEVICE
      • SK_MSG

        public static final ProgType SK_MSG
      • RAW_TRACEPOINT

        public static final ProgType RAW_TRACEPOINT
      • CGROUP_SOCK_ADDR

        public static final ProgType CGROUP_SOCK_ADDR
      • LWT_SEG6LOCAL

        public static final ProgType LWT_SEG6LOCAL
      • LIRC_MODE2

        public static final ProgType LIRC_MODE2
      • SK_REUSEPORT

        public static final ProgType SK_REUSEPORT
      • FLOW_DISSECTOR

        public static final ProgType FLOW_DISSECTOR
    • Method Detail

      • values

        public static ProgType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (ProgType c : ProgType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ProgType valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null