Enum PCD.Interactions
- java.lang.Object
-
- java.lang.Enum<PCD.Interactions>
-
- org.openehealth.ipf.commons.ihe.hl7v2ws.PCD.Interactions
-
- All Implemented Interfaces:
Serializable
,Comparable<PCD.Interactions>
,InteractionId
,Hl7v2InteractionId<MllpAuditDataset>
,Hl7v2WsInteractionId
,WsInteractionId<WsTransactionConfiguration<WsAuditDataset>>
- Enclosing class:
- PCD
public static enum PCD.Interactions extends Enum<PCD.Interactions> implements Hl7v2WsInteractionId
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PCD_01
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Hl7v2TransactionConfiguration<MllpAuditDataset>
getHl7v2TransactionConfiguration()
NakFactory<MllpAuditDataset>
getNakFactory()
WsTransactionConfiguration<WsAuditDataset>
getWsTransactionConfiguration()
static PCD.Interactions
valueOf(String name)
Returns the enum constant of this type with the specified name.static PCD.Interactions[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.-
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Methods inherited from interface org.openehealth.ipf.commons.ihe.hl7v2.Hl7v2InteractionId
init
-
-
-
-
Enum Constant Detail
-
PCD_01
public static final PCD.Interactions PCD_01
-
-
Method Detail
-
values
public static PCD.Interactions[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PCD.Interactions c : PCD.Interactions.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PCD.Interactions valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getHl7v2TransactionConfiguration
public Hl7v2TransactionConfiguration<MllpAuditDataset> getHl7v2TransactionConfiguration()
- Specified by:
getHl7v2TransactionConfiguration
in interfaceHl7v2InteractionId<MllpAuditDataset>
-
getNakFactory
public NakFactory<MllpAuditDataset> getNakFactory()
- Specified by:
getNakFactory
in interfaceHl7v2InteractionId<MllpAuditDataset>
-
getWsTransactionConfiguration
public WsTransactionConfiguration<WsAuditDataset> getWsTransactionConfiguration()
- Specified by:
getWsTransactionConfiguration
in interfaceWsInteractionId<WsTransactionConfiguration<WsAuditDataset>>
-
-