public static enum Normalized.Type extends Enum<Normalized.Type>
Enum Constant and Description |
---|
AUTH
Authentication event
|
AUTH_SESSION
Indicates an authenticated session, where authentication may have occurred in the past
|
HTTP_REQUEST
Indicates an HTTP request, from something like a web server or a load balancer log
|
Modifier and Type | Method and Description |
---|---|
static Normalized.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Normalized.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Normalized.Type AUTH
public static final Normalized.Type AUTH_SESSION
public static final Normalized.Type HTTP_REQUEST
public static Normalized.Type[] values()
for (Normalized.Type c : Normalized.Type.values()) System.out.println(c);
public static Normalized.Type 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.