public enum EMEP extends Enum<EMEP> implements com.helger.commons.id.IHasID<String>
| Enum Constant and Description |
|---|
ONE_WAY
The One-Way MEP which governs the exchange of a single User Message Unit
unrelated to other User Messages.
|
TWO_WAY
The Two-Way MEP which governs the exchange of two User Message Units in
opposite directions, the first one to occur is labeled "request", the other
one "reply".
|
| Modifier and Type | Field and Description |
|---|---|
static EMEP |
DEFAULT_EBMS |
| Modifier and Type | Method and Description |
|---|---|
static EMEP |
getFromIDOrNull(String sID) |
static EMEP |
getFromURIOrNull(String sURI) |
String |
getID() |
int |
getMessageCount() |
String |
getURI() |
boolean |
isOneWay() |
boolean |
isTwoWay() |
static EMEP |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EMEP[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EMEP ONE_WAY
public static final EMEP TWO_WAY
public static final EMEP DEFAULT_EBMS
public static EMEP[] values()
for (EMEP c : EMEP.values()) System.out.println(c);
public static EMEP 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 null@Nonnull @Nonempty public String getID()
getID in interface com.helger.commons.id.IHasID<String>@Nonnegative public int getMessageCount()
public boolean isOneWay()
public boolean isTwoWay()
Copyright © 2015–2020 Philip Helger. All rights reserved.