org.apache.logging.log4j.message
Class ObjectMessage

java.lang.Object
  extended by org.apache.logging.log4j.message.ObjectMessage
All Implemented Interfaces:
Serializable, Message

public class ObjectMessage
extends Object
implements Message, Serializable

Handles messages that contain an Object.

See Also:
Serialized Form

Constructor Summary
ObjectMessage(Object obj)
          Create the ObjectMessage.
 
Method Summary
 boolean equals(Object o)
           
 String getFormattedMessage()
          Return the formatted object message.
 String getMessageFormat()
          Returns the object formatted using its toString method.
 Object[] getParameters()
          Returns the object as if it were a parameter.
 int hashCode()
           
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ObjectMessage

public ObjectMessage(Object obj)
Create the ObjectMessage.

Parameters:
obj - The Object to format.
Method Detail

getFormattedMessage

public String getFormattedMessage()
Return the formatted object message.

Specified by:
getFormattedMessage in interface Message
Returns:
the formatted object message.

getMessageFormat

public String getMessageFormat()
Returns the object formatted using its toString method.

Specified by:
getMessageFormat in interface Message
Returns:
the String representation of the object.

getParameters

public Object[] getParameters()
Returns the object as if it were a parameter.

Specified by:
getParameters in interface Message
Returns:
The object.

equals

public boolean equals(Object o)
Overrides:
equals in class Object

hashCode

public int hashCode()
Overrides:
hashCode in class Object

toString

public String toString()
Overrides:
toString in class Object


Copyright © 1999-2012 Apache Software Foundation. All Rights Reserved.