Package | Description |
---|---|
com.massa.util |
Modifier and Type | Method and Description |
---|---|
ObjOut |
ObjOut.html() |
ObjOut |
ObjOut.noStatics() |
ObjOut |
ObjOut.prune(String rules)
Adds pruning rules based on package names.
|
ObjOut |
ObjOut.resetPruning() |
ObjOut |
ObjOut.setMaxLevel(int maxLevel) |
ObjOut |
ObjOut.skip(Object... os)
Records passed objects to the 'already seen' list, causing their content to
be skipped when dumping later on. e.g :
new ObjOut().to("file.c").skip(session).dump(request) |
ObjOut |
ObjOut.statics() |
ObjOut |
ObjOut.text() |
static ObjOut |
ObjOut.to(File f)
Sets this dumper to output to a file
|
static ObjOut |
ObjOut.to(OutputStream os,
boolean mustClose)
Sets this dumper to output to a stream
|
ObjOut |
ObjOut.to(PrintStream newPs,
boolean newMustClose)
Sets this dumper to output to a given print stream and replaces previous values of ps and mustClose.
|
static ObjOut |
ObjOut.to(String fileName)
Sets this dumper to output to the file specified by its name
|
static ObjOut |
ObjOut.to(Writer w,
boolean mustClose)
Sets this dumper to output to a stream
|
Modifier and Type | Method and Description |
---|---|
abstract boolean |
ObjOut.StdHandler.canDealWith(ObjOut oo,
Class<?> c,
Object o) |
void |
ObjOut.Handler.drillDown(ObjOut oo,
Object o,
Class<?> c) |
protected void |
ObjOut.StdHandler.drillDownCollection(ObjOut oo,
Collection<?> o,
Class<?> eltClass)
Helper : dumps a collection's elements
|
boolean |
ObjOut.Handler.prSize(ObjOut oo,
Object o,
Class<?> c) |