Package ca.uhn.fhir.model.dstu2.valueset
Enum AuditEventSourceTypeEnum
- java.lang.Object
-
- java.lang.Enum<AuditEventSourceTypeEnum>
-
- ca.uhn.fhir.model.dstu2.valueset.AuditEventSourceTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<AuditEventSourceTypeEnum>
public enum AuditEventSourceTypeEnum extends Enum<AuditEventSourceTypeEnum>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPLICATION_SERVERDisplay: Application Server
Code Value: 4 Application Server process or thread.DATA_INTERFACEDisplay: Data Interface
Code Value: 2 Data acquisition device or instrument.DATABASE_SERVERDisplay: Database Server
Code Value: 5 Database Server process or thread.NETWORK_DEVICEDisplay: Network Device
Code Value: 7 ISO level 1-3 network component.NETWORK_ROUTERDisplay: Network Router
Code Value: 8 ISO level 4-6 operating software.OTHERDisplay: Other
Code Value: 9 other kind of device (defined by DICOM, but some other code/system can be used).SECURITY_SERVERDisplay: Security Server
Code Value: 6 Security server, e.g.USER_DEVICEDisplay: User Device
Code Value: 1 End-user display device, diagnostic device.WEB_SERVERDisplay: Web Server
Code Value: 3 Web Server process or thread.
-
Field Summary
Fields Modifier and Type Field Description static ca.uhn.fhir.model.api.IValueSetEnumBinder<AuditEventSourceTypeEnum>VALUESET_BINDERConverts codes to their respective enumerated valuesstatic StringVALUESET_IDENTIFIERIdentifier for this Value Set:static StringVALUESET_NAMEName for this Value Set: Audit Event Source Type
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AuditEventSourceTypeEnumforCode(String theCode)Returns the enumerated value associated with this codeStringgetCode()Returns the code associated with this enumerated valueStringgetSystem()Returns the code system associated with this enumerated valuestatic AuditEventSourceTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static AuditEventSourceTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
USER_DEVICE
public static final AuditEventSourceTypeEnum USER_DEVICE
Display: User Device
Code Value: 1 End-user display device, diagnostic device.
-
DATA_INTERFACE
public static final AuditEventSourceTypeEnum DATA_INTERFACE
Display: Data Interface
Code Value: 2 Data acquisition device or instrument.
-
WEB_SERVER
public static final AuditEventSourceTypeEnum WEB_SERVER
Display: Web Server
Code Value: 3 Web Server process or thread.
-
APPLICATION_SERVER
public static final AuditEventSourceTypeEnum APPLICATION_SERVER
Display: Application Server
Code Value: 4 Application Server process or thread.
-
DATABASE_SERVER
public static final AuditEventSourceTypeEnum DATABASE_SERVER
Display: Database Server
Code Value: 5 Database Server process or thread.
-
SECURITY_SERVER
public static final AuditEventSourceTypeEnum SECURITY_SERVER
Display: Security Server
Code Value: 6 Security server, e.g. a domain controller.
-
NETWORK_DEVICE
public static final AuditEventSourceTypeEnum NETWORK_DEVICE
Display: Network Device
Code Value: 7 ISO level 1-3 network component.
-
NETWORK_ROUTER
public static final AuditEventSourceTypeEnum NETWORK_ROUTER
Display: Network Router
Code Value: 8 ISO level 4-6 operating software.
-
OTHER
public static final AuditEventSourceTypeEnum OTHER
Display: Other
Code Value: 9 other kind of device (defined by DICOM, but some other code/system can be used).
-
-
Field Detail
-
VALUESET_IDENTIFIER
public static final String VALUESET_IDENTIFIER
Identifier for this Value Set:- See Also:
- Constant Field Values
-
VALUESET_NAME
public static final String VALUESET_NAME
Name for this Value Set: Audit Event Source Type- See Also:
- Constant Field Values
-
VALUESET_BINDER
public static final ca.uhn.fhir.model.api.IValueSetEnumBinder<AuditEventSourceTypeEnum> VALUESET_BINDER
Converts codes to their respective enumerated values
-
-
Method Detail
-
values
public static AuditEventSourceTypeEnum[] 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 (AuditEventSourceTypeEnum c : AuditEventSourceTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AuditEventSourceTypeEnum 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
-
forCode
public static AuditEventSourceTypeEnum forCode(String theCode)
Returns the enumerated value associated with this code
-
-