Uses of Class
org.kordamp.json.util.CycleDetectionStrategy
-
Packages that use CycleDetectionStrategy Package Description org.kordamp.json The core of the libraryorg.kordamp.json.util Miscelaneous utilities -
-
Uses of CycleDetectionStrategy in org.kordamp.json
Fields in org.kordamp.json declared as CycleDetectionStrategy Modifier and Type Field Description private CycleDetectionStrategyJsonConfig. cycleDetectionStrategyprivate static CycleDetectionStrategyJsonConfig. DEFAULT_CYCLE_DETECTION_STRATEGYMethods in org.kordamp.json that return CycleDetectionStrategy Modifier and Type Method Description CycleDetectionStrategyJsonConfig. getCycleDetectionStrategy()Returns the configured CycleDetectionStrategy.
Default value is CycleDetectionStrategy.STRICT
[Java -> JSON]Methods in org.kordamp.json with parameters of type CycleDetectionStrategy Modifier and Type Method Description voidJsonConfig. setCycleDetectionStrategy(CycleDetectionStrategy cycleDetectionStrategy)Sets a CycleDetectionStrategy to use.
Will set default value (CycleDetectionStrategy.STRICT) if null.
[Java -> JSON] -
Uses of CycleDetectionStrategy in org.kordamp.json.util
Subclasses of CycleDetectionStrategy in org.kordamp.json.util Modifier and Type Class Description private static classCycleDetectionStrategy.LenientCycleDetectionStrategyprivate static classCycleDetectionStrategy.LenientNoRefCycleDetectionStrategyA cycle detection strategy that prevents any mention of the possible conflict from appearing.private static classCycleDetectionStrategy.StrictCycleDetectionStrategyFields in org.kordamp.json.util declared as CycleDetectionStrategy Modifier and Type Field Description static CycleDetectionStrategyCycleDetectionStrategy. LENIENTReturns empty array and null objectstatic CycleDetectionStrategyCycleDetectionStrategy. NOPROPReturns a special object (IGNORE_PROPERTY_OBJ) that indicates the entire property should be ignoredstatic CycleDetectionStrategyCycleDetectionStrategy. STRICTThrows a JSONException
-