Package org.springframework.aot.generate
Class ValueCodeGeneratorDelegates.MapDelegate
java.lang.Object
org.springframework.aot.generate.ValueCodeGeneratorDelegates.MapDelegate
- All Implemented Interfaces:
ValueCodeGenerator.Delegate
- Enclosing class:
- ValueCodeGeneratorDelegates
public static class ValueCodeGeneratorDelegates.MapDelegate
extends Object
implements ValueCodeGenerator.Delegate
ValueCodeGenerator.Delegate
for Map
types.-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.javapoet.CodeBlock
generateCode
(ValueCodeGenerator valueCodeGenerator, Object value) Generate the code for the specified non-nullvalue
.protected org.springframework.javapoet.CodeBlock
generateMapCode
(ValueCodeGenerator valueCodeGenerator, Map<?, ?> map) Generate the code for a non-emptyMap
.
-
Constructor Details
-
MapDelegate
public MapDelegate()
-
-
Method Details
-
generateCode
public org.springframework.javapoet.CodeBlock generateCode(ValueCodeGenerator valueCodeGenerator, Object value) Description copied from interface:ValueCodeGenerator.Delegate
Generate the code for the specified non-nullvalue
. If this instance does not support the value, it should returnnull
to indicate so.- Specified by:
generateCode
in interfaceValueCodeGenerator.Delegate
- Parameters:
valueCodeGenerator
- the code generator to use for embedded valuesvalue
- the value to generate- Returns:
- the code that represents the specified value or
null
if the specified value is not supported.
-
generateMapCode
@Nullable protected org.springframework.javapoet.CodeBlock generateMapCode(ValueCodeGenerator valueCodeGenerator, Map<?, ?> map) Generate the code for a non-emptyMap
.- Parameters:
valueCodeGenerator
- the code generator to use for embedded valuesmap
- the value to generate- Returns:
- the code that represents the specified map or
null
if the specified map is not supported.
-