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