Package one.nio.os.bpf
Enum MapType
- java.lang.Object
-
- java.lang.Enum<MapType>
-
- one.nio.os.bpf.MapType
-
- All Implemented Interfaces:
Serializable,Comparable<MapType>
public enum MapType extends Enum<MapType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MapTypevalueOf(String name)Returns the enum constant of this type with the specified name.static MapType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNSPEC
public static final MapType UNSPEC
-
HASH
public static final MapType HASH
-
ARRAY
public static final MapType ARRAY
-
PROG_ARRAY
public static final MapType PROG_ARRAY
-
PERF_EVENT_ARRAY
public static final MapType PERF_EVENT_ARRAY
-
PERCPU_HASH
public static final MapType PERCPU_HASH
-
PERCPU_ARRAY
public static final MapType PERCPU_ARRAY
-
STACK_TRACE
public static final MapType STACK_TRACE
-
CGROUP_ARRAY
public static final MapType CGROUP_ARRAY
-
LRU_HASH
public static final MapType LRU_HASH
-
LRU_PERCPU_HASH
public static final MapType LRU_PERCPU_HASH
-
LPM_TRIE
public static final MapType LPM_TRIE
-
ARRAY_OF_MAPS
public static final MapType ARRAY_OF_MAPS
-
HASH_OF_MAPS
public static final MapType HASH_OF_MAPS
-
DEVMAP
public static final MapType DEVMAP
-
SOCKMAP
public static final MapType SOCKMAP
-
CPUMAP
public static final MapType CPUMAP
-
XSKMAP
public static final MapType XSKMAP
-
SOCKHASH
public static final MapType SOCKHASH
-
CGROUP_STORAGE
public static final MapType CGROUP_STORAGE
-
REUSEPORT_SOCKARRAY
public static final MapType REUSEPORT_SOCKARRAY
-
PERCPU_CGROUP_STORAGE
public static final MapType PERCPU_CGROUP_STORAGE
-
QUEUE
public static final MapType QUEUE
-
STACK
public static final MapType STACK
-
SK_STORAGE
public static final MapType SK_STORAGE
-
DEVMAP_HASH
public static final MapType DEVMAP_HASH
-
STRUCT_OPS
public static final MapType STRUCT_OPS
-
RINGBUF
public static final MapType RINGBUF
-
INODE_STORAGE
public static final MapType INODE_STORAGE
-
TASK_STORAGE
public static final MapType TASK_STORAGE
-
BLOOM_FILTER
public static final MapType BLOOM_FILTER
-
-
Method Detail
-
values
public static MapType[] 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 (MapType c : MapType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MapType 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 nameNullPointerException- if the argument is null
-
-