Interface Dumpable
-
- All Known Implementing Classes:
AesCounterRandom
,BaseRandom
,BaseSplittableRandomAdapter
,CipherCounterRandom
,Cmwc4096Random
,DirectSplittableRandomAdapter
,EntropyBlockingRandomWrapper
,EntropyBlockingSplittableRandomAdapter
,MersenneTwisterRandom
,Pcg128Random
,Pcg64Random
,RandomWrapper
,ReseedingThreadLocalRandomWrapper
,SingleThreadSplittableRandomAdapter
,SplittableRandomAdapter
,ThreadLocalRandomWrapper
,XorShiftRandom
public interface Dumpable
Object that can be dumped (written for debugging purposes to a more detailed string representation than whatObject.toString()
returns).- Author:
- Chris Hennick
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
dump()
Returns aString
representing the state of this object for debugging purposes, including mutable state thatObject.toString()
usually doesn't return.
-
-
-
Method Detail
-
dump
String dump()
Returns aString
representing the state of this object for debugging purposes, including mutable state thatObject.toString()
usually doesn't return.- Returns:
- a representation of this object and its state.
-
-