SimpleFormatter
Inheritance: java.lang.Object, com.aspose.email.Formatter
public final class SimpleFormatter extends Formatter
Represents the default implementation of IFormatter interface.
Constructors
Constructor | Description |
---|---|
SimpleFormatter() | Creates a new SimpleFormatter instance. |
SimpleFormatter(String header, String footer) | Creates a new SimpleFormatter instance. |
Methods
Method | Description |
---|---|
equals(Object arg0) | |
format(LogEntry entry) | Formats a log entry and return a string to be outputted. |
format(Date datatime) | Formats a datetime and return a string to be outputted. |
getClass() | |
getDefaultFormatter() | Gets or sets default formatter |
getFooter() | Gets or sets the footer. |
getHeader() | Gets or sets the header. |
getLogHeader() | Gets or sets the log header |
hashCode() | |
notify() | |
notifyAll() | |
setDefaultFormatter(IFormatter value) | Gets or sets default formatter |
toString() | |
wait() | |
wait(long arg0) | |
wait(long arg0, int arg1) |
SimpleFormatter()
public SimpleFormatter()
Creates a new SimpleFormatter instance.
SimpleFormatter(String header, String footer)
public SimpleFormatter(String header, String footer)
Creates a new SimpleFormatter instance.
Parameters:
Parameter | Type | Description |
---|---|---|
header | java.lang.String | The header. |
footer | java.lang.String | The footer. |
equals(Object arg0)
public boolean equals(Object arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | java.lang.Object |
Returns: boolean
format(LogEntry entry)
public String format(LogEntry entry)
Formats a log entry and return a string to be outputted.
Parameters:
Parameter | Type | Description |
---|---|---|
entry | LogEntry | Log entry to format. |
Returns: java.lang.String - String representing the log entry.
format(Date datatime)
public String format(Date datatime)
Formats a datetime and return a string to be outputted.
Parameters:
Parameter | Type | Description |
---|---|---|
datatime | java.util.Date | The datetime value for formatting to string |
Returns: java.lang.String
getClass()
public final native Class<?> getClass()
Returns: java.lang.Class
getDefaultFormatter()
public static IFormatter getDefaultFormatter()
Gets or sets default formatter
Returns: IFormatter
getFooter()
public String getFooter()
Gets or sets the footer.
Returns: java.lang.String
getHeader()
public String getHeader()
Gets or sets the header.
Returns: java.lang.String
getLogHeader()
public String getLogHeader()
Gets or sets the log header
Returns: java.lang.String
hashCode()
public native int hashCode()
Returns: int
notify()
public final native void notify()
notifyAll()
public final native void notifyAll()
setDefaultFormatter(IFormatter value)
public static void setDefaultFormatter(IFormatter value)
Gets or sets default formatter
Parameters:
Parameter | Type | Description |
---|---|---|
value | IFormatter |
toString()
public String toString()
Returns: java.lang.String
wait()
public final void wait()
wait(long arg0)
public final native void wait(long arg0)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | long |
wait(long arg0, int arg1)
public final void wait(long arg0, int arg1)
Parameters:
Parameter | Type | Description |
---|---|---|
arg0 | long | |
arg1 | int |