public enum Mep extends Enum<Mep>
| Modifier and Type | Method and Description |
|---|---|
static Mep |
fromString(String string)
Identify Mep by String ignore case.
|
boolean |
isAsync() |
boolean |
isBothDirection() |
boolean |
isInbound() |
boolean |
isInboundRequest() |
boolean |
isOneDirection() |
boolean |
isOutbound() |
boolean |
isOutboundRequest() |
boolean |
isRequest() |
boolean |
isResponse() |
boolean |
isSync() |
String |
toString() |
static Mep |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Mep[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Mep OUTBOUND_REQUEST_RESPONSE_SYNCHRONOUS
public static final Mep OUTBOUND_REQUEST_ASYNCHRONOUS
public static final Mep OUTBOUND_RESPONSE_ASYNCHRONOUS
public static final Mep INBOUND_REQUEST_RESPONSE_SYNCHRONOUS
public static final Mep INBOUND_REQUEST_SYNCHRONOUS
public static final Mep INBOUND_RESPONSE_SYNCHRONOUS
public static final Mep INBOUND_REQUEST_ASYNCHRONOUS
public static final Mep INBOUND_RESPONSE_ASYNCHRONOUS
public static Mep[] values()
for (Mep c : Mep.values()) System.out.println(c);
public static Mep 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 boolean isAsync()
public boolean isSync()
public boolean isOutbound()
public boolean isInbound()
public boolean isRequest()
public boolean isResponse()
public boolean isOneDirection()
public boolean isBothDirection()
public boolean isInboundRequest()
public boolean isOutboundRequest()
Copyright © 2025. All rights reserved.