Package com.openhtmltopdf.util
Enum LogMessageId.LogMessageId3Param
- java.lang.Object
-
- java.lang.Enum<LogMessageId.LogMessageId3Param>
-
- com.openhtmltopdf.util.LogMessageId.LogMessageId3Param
-
- All Implemented Interfaces:
LogMessageId,java.io.Serializable,java.lang.Comparable<LogMessageId.LogMessageId3Param>
- Enclosing interface:
- LogMessageId
public static enum LogMessageId.LogMessageId3Param extends java.lang.Enum<LogMessageId.LogMessageId3Param> implements LogMessageId
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface com.openhtmltopdf.util.LogMessageId
LogMessageId.LogMessageId0Param, LogMessageId.LogMessageId1Param, LogMessageId.LogMessageId2Param, LogMessageId.LogMessageId3Param, LogMessageId.LogMessageId4Param, LogMessageId.LogMessageId5Param
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXCEPTION_SVG_SCRIPT_NOT_ALLOWEDEXCEPTION_URI_WITH_BASE_URI_INVALIDGENERAL_PDF_ACCESSIBILITY_INCOMPATIBLE_CHILD
-
Field Summary
Fields Modifier and Type Field Description private LogMessageIdFormatlogMessageIdFormatprivate java.lang.StringmessageFormatprivate java.lang.Stringwhere
-
Constructor Summary
Constructors Modifier Constructor Description privateLogMessageId3Param(java.lang.String where, java.lang.String messageFormat)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringformatMessage(java.lang.Object[] args)java.lang.Enum<?>getEnum()java.lang.StringgetMessageFormat()java.lang.StringgetWhere()static LogMessageId.LogMessageId3ParamvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static LogMessageId.LogMessageId3Param[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GENERAL_PDF_ACCESSIBILITY_INCOMPATIBLE_CHILD
public static final LogMessageId.LogMessageId3Param GENERAL_PDF_ACCESSIBILITY_INCOMPATIBLE_CHILD
-
EXCEPTION_URI_WITH_BASE_URI_INVALID
public static final LogMessageId.LogMessageId3Param EXCEPTION_URI_WITH_BASE_URI_INVALID
-
EXCEPTION_SVG_SCRIPT_NOT_ALLOWED
public static final LogMessageId.LogMessageId3Param EXCEPTION_SVG_SCRIPT_NOT_ALLOWED
-
-
Field Detail
-
where
private final java.lang.String where
-
messageFormat
private final java.lang.String messageFormat
-
logMessageIdFormat
private final LogMessageIdFormat logMessageIdFormat
-
-
Method Detail
-
values
public static LogMessageId.LogMessageId3Param[] 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 (LogMessageId.LogMessageId3Param c : LogMessageId.LogMessageId3Param.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LogMessageId.LogMessageId3Param valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getEnum
public java.lang.Enum<?> getEnum()
- Specified by:
getEnumin interfaceLogMessageId
-
getMessageFormat
public java.lang.String getMessageFormat()
- Specified by:
getMessageFormatin interfaceLogMessageId
-
getWhere
public java.lang.String getWhere()
- Specified by:
getWherein interfaceLogMessageId
-
formatMessage
public java.lang.String formatMessage(java.lang.Object[] args)
- Specified by:
formatMessagein interfaceLogMessageId
-
-