public enum ListenerType extends Enum<ListenerType>
| Enum Constant and Description |
|---|
ANY
All listeners
|
GATEWAY
Gateway listener
|
SIDECAR_INBOUND
Inbound listener in sidecar
|
SIDECAR_OUTBOUND
Outbound listener in sidecar
|
| Modifier and Type | Method and Description |
|---|---|
int |
value() |
static ListenerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ListenerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ListenerType ANY
public static final ListenerType SIDECAR_INBOUND
public static final ListenerType SIDECAR_OUTBOUND
public static final ListenerType GATEWAY
public static ListenerType[] values()
for (ListenerType c : ListenerType.values()) System.out.println(c);
public static ListenerType 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.