A B C D E F G I L O P S T V W 

A

AbstractBotLogger - Class in org.msbotframework4j.logging
Base class for adapters for bot logging system
AbstractBotLogger() - Constructor for class org.msbotframework4j.logging.AbstractBotLogger
 
append(Object) - Method in interface org.msbotframework4j.logging.BotLogEntryBuilder
Appends an object to this builder.
append(String) - Method in interface org.msbotframework4j.logging.BotLogEntryBuilder
Appends a string to this builder.
append(String, Object...) - Method in interface org.msbotframework4j.logging.BotLogEntryBuilder
Calls String.format(String, Object...) and appends the result
append(int) - Method in interface org.msbotframework4j.logging.BotLogEntryBuilder
Appends an int value to this builder.
append(long) - Method in interface org.msbotframework4j.logging.BotLogEntryBuilder
Appends a long value to the builder
append(float) - Method in interface org.msbotframework4j.logging.BotLogEntryBuilder
Appends a float value to the builder
append(double) - Method in interface org.msbotframework4j.logging.BotLogEntryBuilder
Appends a double value to the builder
append(boolean) - Method in interface org.msbotframework4j.logging.BotLogEntryBuilder
Appends a boolean value to the builder
append(char) - Method in interface org.msbotframework4j.logging.BotLogEntryBuilder
Appends a char value to the builder
appendFixedWidthPadLeft(Object, int, char) - Method in interface org.msbotframework4j.logging.BotLogEntryBuilder
Appends an object to the builder padding on the left to a fixed width.
appendFixedWidthPadRight(Object, int, char) - Method in interface org.msbotframework4j.logging.BotLogEntryBuilder
Appends an object to the builder padding on the right to a fixed length.
appendln(Object) - Method in interface org.msbotframework4j.logging.BotLogEntryBuilder
Appends an object followed by a new line to this builder
appendln(String) - Method in interface org.msbotframework4j.logging.BotLogEntryBuilder
Appends a string followed by a new line to this builder
appendln(String, Object...) - Method in interface org.msbotframework4j.logging.BotLogEntryBuilder
Calls String.format(String, Object...) and appends the result followed by a new line to this builder.
appendln(boolean) - Method in interface org.msbotframework4j.logging.BotLogEntryBuilder
Appends a boolean value followed by a new line to the builder.
appendln(char) - Method in interface org.msbotframework4j.logging.BotLogEntryBuilder
Appends a char value followed by a new line to the builder.
appendln(int) - Method in interface org.msbotframework4j.logging.BotLogEntryBuilder
Appends an int value followed by a new line to the builder.
appendln(long) - Method in interface org.msbotframework4j.logging.BotLogEntryBuilder
Appends a long value followed by a new line to the builder.
appendln(float) - Method in interface org.msbotframework4j.logging.BotLogEntryBuilder
Appends a float value followed by a new line to the builder.
appendln(double) - Method in interface org.msbotframework4j.logging.BotLogEntryBuilder
Appends a double value followed by a new line to the builder.
appendNewLine() - Method in interface org.msbotframework4j.logging.BotLogEntryBuilder
Appends the new line string to this builder.
appendPadding(int, char) - Method in interface org.msbotframework4j.logging.BotLogEntryBuilder
Appends the pad character to the builder the specified number of times.
appendSeparator(char) - Method in interface org.msbotframework4j.logging.BotLogEntryBuilder
Appends a separator if the builder is currently non-empty.
appendWhitespaceSeparator() - Method in interface org.msbotframework4j.logging.BotLogEntryBuilder
Appends a whitespace character to this builder.

B

BotLogEntry - Class in org.msbotframework4j.logging
Class that represents Bot log entry
BotLogEntry(BotLogSeverity, String) - Constructor for class org.msbotframework4j.logging.BotLogEntry
 
BotLogEntry(BotLogSeverity, Throwable) - Constructor for class org.msbotframework4j.logging.BotLogEntry
 
BotLogEntry(BotLogSeverity, String, Throwable) - Constructor for class org.msbotframework4j.logging.BotLogEntry
 
BotLogEntry(Date, BotLogSeverity, String, Throwable) - Constructor for class org.msbotframework4j.logging.BotLogEntry
 
BotLogEntryBuilder - Interface in org.msbotframework4j.logging
Builder for BotLogEntry
BotLogger - Interface in org.msbotframework4j.logging
Logger interface.
BotLogSeverity - Enum in org.msbotframework4j.logging
Severity levels for Bot logging system

C

composeLogMessage() - Method in class org.msbotframework4j.logging.AbstractBotLogger
Creates a builder which simplifies the message configuration
composeLogMessage() - Method in interface org.msbotframework4j.logging.BotLogger
Might be used to compose complicated log records

D

debug(String) - Method in class org.msbotframework4j.logging.AbstractBotLogger
 
debug(String, Throwable) - Method in class org.msbotframework4j.logging.AbstractBotLogger
 
debug(String) - Method in interface org.msbotframework4j.logging.BotLogger
Logs a message at the DEBUG level
debug(String, Throwable) - Method in interface org.msbotframework4j.logging.BotLogger
Logs an exception (throwable) at the DEBUG level with an accompanying message.

E

error(String) - Method in class org.msbotframework4j.logging.AbstractBotLogger
 
error(String, Throwable) - Method in class org.msbotframework4j.logging.AbstractBotLogger
 
error(String) - Method in interface org.msbotframework4j.logging.BotLogger
Logs a message at the ERROR level
error(String, Throwable) - Method in interface org.msbotframework4j.logging.BotLogger
Logs an exception (throwable) at the ERROR level with an accompanying message.

F

formatLogEntry(BotLogEntry) - Method in class org.msbotframework4j.logging.AbstractBotLogger
Base method to convert log entry to String.
formatLogEntry(BotLogEntry) - Method in class org.msbotframework4j.logging.impl.Slf4jBotLogger
 

G

getAbbreviation() - Method in enum org.msbotframework4j.logging.BotLogSeverity
 
getDateFormat() - Method in class org.msbotframework4j.logging.AbstractBotLogger
Return default date format
getException() - Method in class org.msbotframework4j.logging.BotLogEntry
 
getMessage() - Method in class org.msbotframework4j.logging.BotLogEntry
 
getSeverity() - Method in class org.msbotframework4j.logging.BotLogEntry
 
getTimestamp() - Method in class org.msbotframework4j.logging.BotLogEntry
 

I

info(String) - Method in class org.msbotframework4j.logging.AbstractBotLogger
 
info(String, Throwable) - Method in class org.msbotframework4j.logging.AbstractBotLogger
 
info(String) - Method in interface org.msbotframework4j.logging.BotLogger
Logs a message at the INFO level
info(String, Throwable) - Method in interface org.msbotframework4j.logging.BotLogger
Logs an exception (throwable) at the INFO level with an accompanying message.

L

log(BotLogSeverity, String, Throwable) - Method in class org.msbotframework4j.logging.AbstractBotLogger
 
log(BotLogEntry) - Method in class org.msbotframework4j.logging.AbstractBotLogger
 
log(BotLogSeverity, String, Throwable) - Method in interface org.msbotframework4j.logging.BotLogger
Logs an exception with exact severity level with an accompanying message
log(BotLogEntry) - Method in interface org.msbotframework4j.logging.BotLogger
Writes log entry to logging stream

O

org.msbotframework4j.logging - package org.msbotframework4j.logging
 
org.msbotframework4j.logging.impl - package org.msbotframework4j.logging.impl
 

P

push() - Method in interface org.msbotframework4j.logging.BotLogEntryBuilder
Calls BotLogger.log(BotLogEntry) to write message to a logging stream

S

setException(Throwable) - Method in class org.msbotframework4j.logging.BotLogEntry
 
setMessage(String) - Method in class org.msbotframework4j.logging.BotLogEntry
 
setSeverity(BotLogSeverity) - Method in class org.msbotframework4j.logging.BotLogEntry
 
setTimestamp(Date) - Method in class org.msbotframework4j.logging.BotLogEntry
 
SimpleBotLogger - Class in org.msbotframework4j.logging.impl
Simple implementation of BotLogger that prints messages to System.out
SimpleBotLogger() - Constructor for class org.msbotframework4j.logging.impl.SimpleBotLogger
 
Slf4jBotLogger - Class in org.msbotframework4j.logging.impl
Adapter for Slf4j logging system
Slf4jBotLogger(Logger) - Constructor for class org.msbotframework4j.logging.impl.Slf4jBotLogger
 

T

trim() - Method in interface org.msbotframework4j.logging.BotLogEntryBuilder
Trims the builder by removing characters less than or equal to a space from the beginning and end.

V

valueOf(String) - Static method in enum org.msbotframework4j.logging.BotLogSeverity
Returns the enum constant of this type with the specified name.
values() - Static method in enum org.msbotframework4j.logging.BotLogSeverity
Returns an array containing the constants of this enum type, in the order they are declared.

W

warn(String) - Method in class org.msbotframework4j.logging.AbstractBotLogger
 
warn(String, Throwable) - Method in class org.msbotframework4j.logging.AbstractBotLogger
 
warn(String) - Method in interface org.msbotframework4j.logging.BotLogger
Logs a message at the WARNING level
warn(String, Throwable) - Method in interface org.msbotframework4j.logging.BotLogger
Logs an exception (throwable) at the WARNING level with an accompanying message.
withException(Throwable) - Method in interface org.msbotframework4j.logging.BotLogEntryBuilder
Sets the exception that would be accompanied with this message
withSeverity(BotLogSeverity) - Method in interface org.msbotframework4j.logging.BotLogEntryBuilder
Sets the severity level using BotLogEntry.setSeverity(BotLogSeverity)
writeToSink(BotLogEntry) - Method in class org.msbotframework4j.logging.AbstractBotLogger
Customizable method which writes log entry to exact resource
writeToSink(BotLogEntry) - Method in class org.msbotframework4j.logging.impl.SimpleBotLogger
 
writeToSink(BotLogEntry) - Method in class org.msbotframework4j.logging.impl.Slf4jBotLogger
 
A B C D E F G I L O P S T V W 

Copyright © 2016. All rights reserved.