Package org.hl7.fhir.r4.context
Enum IWorkerContext.ILoggingService.LogCategory
- java.lang.Object
-
- java.lang.Enum<IWorkerContext.ILoggingService.LogCategory>
-
- org.hl7.fhir.r4.context.IWorkerContext.ILoggingService.LogCategory
-
- All Implemented Interfaces:
Serializable,Comparable<IWorkerContext.ILoggingService.LogCategory>
- Enclosing interface:
- IWorkerContext.ILoggingService
public static enum IWorkerContext.ILoggingService.LogCategory extends Enum<IWorkerContext.ILoggingService.LogCategory>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IWorkerContext.ILoggingService.LogCategoryvalueOf(String name)Returns the enum constant of this type with the specified name.static IWorkerContext.ILoggingService.LogCategory[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROGRESS
public static final IWorkerContext.ILoggingService.LogCategory PROGRESS
-
TX
public static final IWorkerContext.ILoggingService.LogCategory TX
-
INIT
public static final IWorkerContext.ILoggingService.LogCategory INIT
-
CONTEXT
public static final IWorkerContext.ILoggingService.LogCategory CONTEXT
-
HTML
public static final IWorkerContext.ILoggingService.LogCategory HTML
-
-
Method Detail
-
values
public static IWorkerContext.ILoggingService.LogCategory[] 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 (IWorkerContext.ILoggingService.LogCategory c : IWorkerContext.ILoggingService.LogCategory.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IWorkerContext.ILoggingService.LogCategory 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
-
-