public enum UndertowListenerType extends Enum<UndertowListenerType>
| Enum Constant and Description |
|---|
AJP_LISTENER |
HTTP_LISTENER |
HTTPS_LISTENER |
| Modifier and Type | Method and Description |
|---|---|
String |
listenerTypeName() |
static UndertowListenerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UndertowListenerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UndertowListenerType HTTP_LISTENER
public static final UndertowListenerType HTTPS_LISTENER
public static final UndertowListenerType AJP_LISTENER
public static UndertowListenerType[] values()
for (UndertowListenerType c : UndertowListenerType.values()) System.out.println(c);
public static UndertowListenerType 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 String listenerTypeName()
Copyright © 2024. All rights reserved.