Package org.assertj.core.presentation
Class BinaryRepresentation
- java.lang.Object
-
- org.assertj.core.presentation.StandardRepresentation
-
- org.assertj.core.presentation.BinaryRepresentation
-
- All Implemented Interfaces:
Representation
public class BinaryRepresentation extends StandardRepresentation
Binary object representation instead of standard java representation.- Author:
- Mariusz Smykula
-
-
Field Summary
Fields Modifier and Type Field Description static BinaryRepresentationBINARY_REPRESENTATIONstatic StringBYTE_PREFIX-
Fields inherited from class org.assertj.core.presentation.StandardRepresentation
ELEMENT_SEPARATOR, ELEMENT_SEPARATOR_WITH_NEWLINE, INDENTATION_AFTER_NEWLINE, INDENTATION_FOR_SINGLE_LINE, STANDARD_REPRESENTATION
-
-
Constructor Summary
Constructors Constructor Description BinaryRepresentation()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description private static StringtoBinary(String value, int size)private static StringtoGroupedBinary(String value, int size)protected StringtoStringOf(Byte b)protected StringtoStringOf(Character character)protected StringtoStringOf(Double d)protected StringtoStringOf(Float f)protected StringtoStringOf(Integer i)protected StringtoStringOf(Long l)protected StringtoStringOf(Number number)StringtoStringOf(Object object)Returns binary thetoStringrepresentation of the given object.protected StringtoStringOf(Short s)protected StringtoStringOf(Representation representation, String s)-
Methods inherited from class org.assertj.core.presentation.StandardRepresentation
customFormat, fallbackToStringOf, format, format, formatArray, formatPrimitiveArray, getMaxElementsForPrinting, getMaxLengthForSingleLineDescription, hasCustomFormatterFor, multiLineFormat, multiLineFormat, registerFormatterForType, removeAllRegisteredFormatters, resetDefaults, setMaxElementsForPrinting, setMaxLengthForSingleLineDescription, singleLineFormat, singleLineFormat, smartFormat, smartFormat, toString, toStringOf, toStringOf, toStringOf, toStringOf, toStringOf, toStringOf, toStringOf, toStringOf, toStringOf, toStringOf, toStringOf, toStringOf, toStringOf, toStringOf, toStringOf, toStringOf, toStringOf, toStringOf, toStringOf, unambiguousToStringOf
-
-
-
-
Field Detail
-
BINARY_REPRESENTATION
public static final BinaryRepresentation BINARY_REPRESENTATION
-
BYTE_PREFIX
public static final String BYTE_PREFIX
- See Also:
- Constant Field Values
-
-
Method Detail
-
toStringOf
public String toStringOf(Object object)
Returns binary thetoStringrepresentation of the given object. It may or not the object's own implementation oftoString.- Specified by:
toStringOfin interfaceRepresentation- Overrides:
toStringOfin classStandardRepresentation- Parameters:
object- the given object.- Returns:
- the
toStringrepresentation of the given object.
-
toStringOf
protected String toStringOf(Representation representation, String s)
-
toStringOf
protected String toStringOf(Number number)
- Overrides:
toStringOfin classStandardRepresentation
-
toStringOf
protected String toStringOf(Long l)
- Overrides:
toStringOfin classStandardRepresentation
-
toStringOf
protected String toStringOf(Float f)
- Overrides:
toStringOfin classStandardRepresentation
-
toStringOf
protected String toStringOf(Character character)
- Overrides:
toStringOfin classStandardRepresentation
-
-