Uses of Class
net.sf.json.util.CycleDetectionStrategy
-
Packages that use CycleDetectionStrategy Package Description net.sf.json The core of the librarynet.sf.json.util Miscelaneous utilities -
-
Uses of CycleDetectionStrategy in net.sf.json
Fields in net.sf.json declared as CycleDetectionStrategy Modifier and Type Field Description private CycleDetectionStrategy
JsonConfig. cycleDetectionStrategy
private static CycleDetectionStrategy
JsonConfig. DEFAULT_CYCLE_DETECTION_STRATEGY
Methods in net.sf.json that return CycleDetectionStrategy Modifier and Type Method Description CycleDetectionStrategy
JsonConfig. getCycleDetectionStrategy()
Returns the configured CycleDetectionStrategy.
Default value is CycleDetectionStrategy.STRICT
[Java -> JSON]Methods in net.sf.json with parameters of type CycleDetectionStrategy Modifier and Type Method Description void
JsonConfig. setCycleDetectionStrategy(CycleDetectionStrategy cycleDetectionStrategy)
Sets a CycleDetectionStrategy to use.
Will set default value (CycleDetectionStrategy.STRICT) if null.
[Java -> JSON] -
Uses of CycleDetectionStrategy in net.sf.json.util
Subclasses of CycleDetectionStrategy in net.sf.json.util Modifier and Type Class Description private static class
CycleDetectionStrategy.LenientCycleDetectionStrategy
private static class
CycleDetectionStrategy.LenientNoRefCycleDetectionStrategy
A cycle detection strategy that prevents any mention of the possible conflict from appearing.private static class
CycleDetectionStrategy.StrictCycleDetectionStrategy
Fields in net.sf.json.util declared as CycleDetectionStrategy Modifier and Type Field Description static CycleDetectionStrategy
CycleDetectionStrategy. LENIENT
Returns empty array and null objectstatic CycleDetectionStrategy
CycleDetectionStrategy. NOPROP
Returns a special object (IGNORE_PROPERTY_OBJ) that indicates the entire property should be ignoredstatic CycleDetectionStrategy
CycleDetectionStrategy. STRICT
Throws a JSONException
-