Class JsonIndexAccessor
java.lang.Object
org.springframework.integration.json.JsonIndexAccessor
- All Implemented Interfaces:
- IndexAccessor,- TargetedAccessor
A SpEL 
IndexAccessor that knows how to read indexes from JSON arrays, using
 Jackson's ArrayNode API.
 Supports indexes supplied as an integer literal — for example, myJsonArray[1].
 Also supports negative indexes — for example, myJsonArray[-1] which equates
 to myJsonArray[myJsonArray.length - 1]. Furthermore, null is returned for
 any index that is out of bounds (see ArrayNode.get(int) for details).
- Since:
- 6.4
- Author:
- Sam Brannen
- See Also:
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionbooleancanRead(EvaluationContext context, Object target, Object index) booleancanWrite(EvaluationContext context, Object target, Object index) Class<?>[]read(EvaluationContext context, Object target, Object index) voidwrite(EvaluationContext context, Object target, Object index, Object newValue) 
- 
Constructor Details- 
JsonIndexAccessorpublic JsonIndexAccessor()
 
- 
- 
Method Details- 
getSpecificTargetClasses- Specified by:
- getSpecificTargetClassesin interface- TargetedAccessor
 
- 
canRead- Specified by:
- canReadin interface- IndexAccessor
 
- 
readpublic TypedValue read(EvaluationContext context, Object target, Object index) throws AccessException - Specified by:
- readin interface- IndexAccessor
- Throws:
- AccessException
 
- 
canWrite- Specified by:
- canWritein interface- IndexAccessor
 
- 
writepublic void write(EvaluationContext context, Object target, Object index, @Nullable Object newValue) - Specified by:
- writein interface- IndexAccessor
 
 
-