Package org.hl7.fhir.r4.utils
Enum IResourceValidator.IdStatus
- java.lang.Object
-
- java.lang.Enum<IResourceValidator.IdStatus>
-
- org.hl7.fhir.r4.utils.IResourceValidator.IdStatus
-
- All Implemented Interfaces:
Serializable,Comparable<IResourceValidator.IdStatus>
- Enclosing interface:
- IResourceValidator
public static enum IResourceValidator.IdStatus extends Enum<IResourceValidator.IdStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description OPTIONALPROHIBITEDREQUIRED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IResourceValidator.IdStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static IResourceValidator.IdStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OPTIONAL
public static final IResourceValidator.IdStatus OPTIONAL
-
REQUIRED
public static final IResourceValidator.IdStatus REQUIRED
-
PROHIBITED
public static final IResourceValidator.IdStatus PROHIBITED
-
-
Method Detail
-
values
public static IResourceValidator.IdStatus[] 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 (IResourceValidator.IdStatus c : IResourceValidator.IdStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IResourceValidator.IdStatus 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
-
-