Enum Iti67Options
- java.lang.Object
-
- java.lang.Enum<Iti67Options>
-
- org.openehealth.ipf.commons.ihe.fhir.iti67.Iti67Options
-
- All Implemented Interfaces:
Serializable,Comparable<Iti67Options>,org.openehealth.ipf.commons.ihe.core.TransactionOptions<Class<? extends org.openehealth.ipf.commons.ihe.fhir.FhirProvider>>,org.openehealth.ipf.commons.ihe.fhir.FhirTransactionOptions
public enum Iti67Options extends Enum<Iti67Options> implements org.openehealth.ipf.commons.ihe.fhir.FhirTransactionOptions
- Since:
- 4.1
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Class<? extends org.openehealth.ipf.commons.ihe.fhir.FhirProvider>>getSupportedThings()static Iti67OptionsvalueOf(String name)Returns the enum constant of this type with the specified name.static Iti67Options[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STRICT
public static final Iti67Options STRICT
-
LENIENT
public static final Iti67Options LENIENT
-
-
Method Detail
-
values
public static Iti67Options[] 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 (Iti67Options c : Iti67Options.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Iti67Options 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
-
-