public enum EnumCM_PersonParticipant extends java.lang.Enum<EnumCM_PersonParticipant>
| Enum Constant and Description |
|---|
ORGANIZATION_NAME |
PERSON_ID |
PERSON_ID_ISSUER |
PERSON_NAME |
PERSON_ROLE_IN_ORGNIZATION |
PERSON_ROLE_IN_PROCEDURE |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCM_PersonParticipant |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCM_PersonParticipant[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCM_PersonParticipant PERSON_NAME
public static final EnumCM_PersonParticipant PERSON_ROLE_IN_PROCEDURE
public static final EnumCM_PersonParticipant PERSON_ID
public static final EnumCM_PersonParticipant PERSON_ID_ISSUER
public static final EnumCM_PersonParticipant ORGANIZATION_NAME
public static final EnumCM_PersonParticipant PERSON_ROLE_IN_ORGNIZATION
public static EnumCM_PersonParticipant[] values()
for (EnumCM_PersonParticipant c : EnumCM_PersonParticipant.values()) System.out.println(c);
public static EnumCM_PersonParticipant valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getValue()