public enum ListEntryType extends Enum<ListEntryType>
| Enum Constant and Description |
|---|
CASE_INSENSITIVE_STRINGS
List entries are treated as case-insensitive strings.
|
IP_ADDRESSES
List entries are treated as IP addresses and ranges.
|
REGEX
List entries are treated as re2 regexp.
|
STRINGS
List entries are treated as plain strings.
|
| Modifier and Type | Method and Description |
|---|---|
int |
value() |
static ListEntryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ListEntryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ListEntryType STRINGS
public static final ListEntryType CASE_INSENSITIVE_STRINGS
public static final ListEntryType IP_ADDRESSES
public static final ListEntryType REGEX
public static ListEntryType[] values()
for (ListEntryType c : ListEntryType.values()) System.out.println(c);
public static ListEntryType 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 nullpublic int value()
Copyright © 2017–2018 Red Hat. All rights reserved.