Package ch.qos.logback.core.status
Interface Status
-
- All Known Implementing Classes:
ErrorStatus,InfoStatus,StatusBase,WarnStatus
public interface Status
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidadd(Status child)java.lang.LonggetDate()intgetEffectiveLevel()intgetLevel()java.lang.StringgetMessage()java.lang.ObjectgetOrigin()java.lang.ThrowablegetThrowable()booleanhasChildren()java.util.Iterator<Status>iterator()booleanremove(Status child)
-
-
-
Field Detail
-
INFO
static final int INFO
- See Also:
- Constant Field Values
-
WARN
static final int WARN
- See Also:
- Constant Field Values
-
ERROR
static final int ERROR
- See Also:
- Constant Field Values
-
-
Method Detail
-
getLevel
int getLevel()
-
getEffectiveLevel
int getEffectiveLevel()
-
getOrigin
java.lang.Object getOrigin()
-
getMessage
java.lang.String getMessage()
-
getThrowable
java.lang.Throwable getThrowable()
-
getDate
java.lang.Long getDate()
-
hasChildren
boolean hasChildren()
-
add
void add(Status child)
-
remove
boolean remove(Status child)
-
iterator
java.util.Iterator<Status> iterator()
-
-