public static enum AlertMeta.Key.AssociatedKey extends Enum<AlertMeta.Key.AssociatedKey>
In some cases, a particular metadata key is associated with others; for example a GeoIP city/country value that is associated with a particular source address field. These identifiers can be used to establish this linkage in the parent key.
Modifier and Type | Method and Description |
---|---|
static AlertMeta.Key.AssociatedKey |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AlertMeta.Key.AssociatedKey[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlertMeta.Key.AssociatedKey CITY
public static final AlertMeta.Key.AssociatedKey COUNTRY
public static final AlertMeta.Key.AssociatedKey ISP
public static final AlertMeta.Key.AssociatedKey ASN
public static final AlertMeta.Key.AssociatedKey AS_ORG
public static AlertMeta.Key.AssociatedKey[] values()
for (AlertMeta.Key.AssociatedKey c : AlertMeta.Key.AssociatedKey.values()) System.out.println(c);
public static AlertMeta.Key.AssociatedKey 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 © 2022. All rights reserved.