Package org.slf4j.helpers
Class FormattingTuple
- java.lang.Object
-
- org.slf4j.helpers.FormattingTuple
-
public class FormattingTuple extends java.lang.Object
Holds the results of formatting done byMessageFormatter
.
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.Object[]
argArray
private java.lang.String
message
static FormattingTuple
NULL
private java.lang.Throwable
throwable
-
Constructor Summary
Constructors Constructor Description FormattingTuple(java.lang.String message)
FormattingTuple(java.lang.String message, java.lang.Object[] argArray, java.lang.Throwable throwable)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object[]
getArgArray()
java.lang.String
getMessage()
java.lang.Throwable
getThrowable()
-
-
-
Field Detail
-
NULL
public static FormattingTuple NULL
-
message
private java.lang.String message
-
throwable
private java.lang.Throwable throwable
-
argArray
private java.lang.Object[] argArray
-
-