public enum DatabaseType extends Enum<DatabaseType>
| Enum Constant and Description |
|---|
IPINFO_ASN |
IPINFO_STANDARD_LOCATION |
MAXMIND_ASN |
MAXMIND_CITY |
MAXMIND_COUNTRY |
| Modifier and Type | Method and Description |
|---|---|
static DatabaseType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DatabaseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatabaseType MAXMIND_ASN
public static final DatabaseType MAXMIND_CITY
public static final DatabaseType MAXMIND_COUNTRY
public static final DatabaseType IPINFO_STANDARD_LOCATION
public static final DatabaseType IPINFO_ASN
public static DatabaseType[] values()
for (DatabaseType c : DatabaseType.values()) System.out.println(c);
public static DatabaseType 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 © 2012–2021 Graylog, Inc.. All rights reserved.