Enum AbstractOperationDescriptor.AccessLevel
- java.lang.Object
-
- java.lang.Enum<AbstractOperationDescriptor.AccessLevel>
-
- org.somda.sdc.biceps.model.participant.AbstractOperationDescriptor.AccessLevel
-
- All Implemented Interfaces:
Serializable,Comparable<AbstractOperationDescriptor.AccessLevel>
- Enclosing class:
- AbstractOperationDescriptor
public static enum AbstractOperationDescriptor.AccessLevel extends Enum<AbstractOperationDescriptor.AccessLevel>
Java class for null.
The following schema fragment specifies the expected content contained within this class.
<simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="Usr"/> <enumeration value="CSUsr"/> <enumeration value="RO"/> <enumeration value="SP"/> <enumeration value="Oth"/> </restriction> </simpleType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AbstractOperationDescriptor.AccessLevelfromValue(String v)Stringvalue()static AbstractOperationDescriptor.AccessLevelvalueOf(String name)Returns the enum constant of this type with the specified name.static AbstractOperationDescriptor.AccessLevel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
USR
public static final AbstractOperationDescriptor.AccessLevel USR
Usr = User. Any person interacting with (i.e., operating or handling) the POC MEDICAL DEVICE.
-
CS_USR
public static final AbstractOperationDescriptor.AccessLevel CS_USR
CSUsr = Clinical Super User. Individuals or entity accountable to the RESPONSIBLE ORGANIZATION that configure clinical relevant settings of a POC MEDICAL DEVICE.
-
RO
public static final AbstractOperationDescriptor.AccessLevel RO
RO = Responsible Organization. Access is restricted to a RESPONSIBLE ORGANIZATION.
-
SP
public static final AbstractOperationDescriptor.AccessLevel SP
SP = Service Personnel. Access is restricted to SERVICE PERSONNEL.
-
OTH
public static final AbstractOperationDescriptor.AccessLevel OTH
Oth = Other. Access is restricted by other means (e.g., an extension).
-
-
Method Detail
-
values
public static AbstractOperationDescriptor.AccessLevel[] 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 (AbstractOperationDescriptor.AccessLevel c : AbstractOperationDescriptor.AccessLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractOperationDescriptor.AccessLevel 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
-
value
public String value()
-
fromValue
public static AbstractOperationDescriptor.AccessLevel fromValue(String v)
-
-