@Generated public enum ListType extends Enum<ListType>
* `ALLOW`: An allow list. Include this IP or range. * `BLOCK`: A block list. Exclude this IP or range. IP addresses in the block list are excluded even if they are included in an allow list.
| Modifier and Type | Method and Description |
|---|---|
static ListType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ListType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ListType ALLOW
public static final ListType BLOCK
public static ListType[] values()
for (ListType c : ListType.values()) System.out.println(c);
public static ListType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2024. All rights reserved.