Package com.querydsl.codegen
Interface SerializerConfig
- All Known Implementing Classes:
SimpleSerializerConfig
public interface SerializerConfig
SerializerConfig defines serialization options to be used in the Serializer- Author:
- tiwe
-
Method Summary
Modifier and TypeMethodDescriptionbooleanthe default variable is createdthe name of the default variablebooleanaccessors are used for entity fieldsbooleanindexed list accessors are usedbooleankeyed map accessors are used
-
Method Details
-
useEntityAccessors
boolean useEntityAccessors()accessors are used for entity fields- Returns:
- if accessors are used for entity fields
-
useListAccessors
boolean useListAccessors()indexed list accessors are used- Returns:
- if indexed list accessors are used
-
useMapAccessors
boolean useMapAccessors()keyed map accessors are used- Returns:
- if keyed map accessors are used
-
createDefaultVariable
boolean createDefaultVariable()the default variable is created- Returns:
- if the default variable is created
-
defaultVariableName
String defaultVariableName()the name of the default variable- Returns:
- the name of the default variable
-