Documentation ¶
Index ¶
- Variables
- func Generate(specification *spec.Spec, jsonlib string, packageName string, ...) *generator.Sources
- func NewTypes(jsonlib string) *types.Types
- type Generator
- type JacksonGenerator
- func (g *JacksonGenerator) CreateJsonMapperField(w *generator.Writer, annotation string)
- func (g *JacksonGenerator) ErrorModels(httperrors *spec.HttpErrors, thePackage packages.Package, ...) []generator.CodeFile
- func (g *JacksonGenerator) InitJsonMapper(w *generator.Writer)
- func (g *JacksonGenerator) JsonHelpersMethods() string
- func (g *JacksonGenerator) JsonParseException(thePackage packages.Package) *generator.CodeFile
- func (g *JacksonGenerator) JsonRead(varJson string, typ *spec.TypeDef) string
- func (g *JacksonGenerator) JsonWrite(varData string, typ *spec.TypeDef) string
- func (g *JacksonGenerator) Models(version *spec.Version, thePackage packages.Package, ...) []generator.CodeFile
- func (g *JacksonGenerator) ModelsDefinitionsImports() []string
- func (g *JacksonGenerator) ModelsUsageImports() []string
- func (g *JacksonGenerator) ModelsValidation(thePackage, errorsModelsPackage, jsonPackage packages.Package) *generator.CodeFile
- func (g *JacksonGenerator) ReadJson(varJson string, typ *spec.TypeDef) (string, string)
- func (g *JacksonGenerator) SetupLibrary(thePackage packages.Package) []generator.CodeFile
- func (g *JacksonGenerator) WriteJson(varData string, typ *spec.TypeDef) (string, string)
- func (g *JacksonGenerator) WriteJsonNoCheckedException(varData string, typ *spec.TypeDef) string
- type MoshiGenerator
- func (g *MoshiGenerator) CreateJsonMapperField(w *generator.Writer, annotation string)
- func (g *MoshiGenerator) ErrorModels(httperrors *spec.HttpErrors, thePackage packages.Package, ...) []generator.CodeFile
- func (g *MoshiGenerator) InitJsonMapper(w *generator.Writer)
- func (g *MoshiGenerator) JsonHelpersMethods() string
- func (g *MoshiGenerator) JsonParseException(thePackage packages.Package) *generator.CodeFile
- func (g *MoshiGenerator) JsonRead(varJson string, typ *spec.TypeDef) string
- func (g *MoshiGenerator) JsonWrite(varData string, typ *spec.TypeDef) string
- func (g *MoshiGenerator) Models(version *spec.Version, thePackage packages.Package, ...) []generator.CodeFile
- func (g *MoshiGenerator) ModelsDefinitionsImports() []string
- func (g *MoshiGenerator) ModelsUsageImports() []string
- func (g *MoshiGenerator) ModelsValidation(thePackage, errorsModelsPackage, jsonPackage packages.Package) *generator.CodeFile
- func (g *MoshiGenerator) ReadJson(varJson string, typ *spec.TypeDef) (string, string)
- func (g *MoshiGenerator) SetupLibrary(thePackage packages.Package) []generator.CodeFile
- func (g *MoshiGenerator) WriteJson(varData string, typ *spec.TypeDef) (string, string)
- func (g *MoshiGenerator) WriteJsonNoCheckedException(varData string, typ *spec.TypeDef) string
- type Packages
Constants ¶
This section is empty.
Variables ¶
View Source
var Jackson = "jackson"
View Source
var Moshi = "moshi"
Functions ¶
Types ¶
type Generator ¶
type Generator interface { Models(version *spec.Version, thePackage packages.Package, jsonPackage packages.Package) []generator.CodeFile ErrorModels(httperrors *spec.HttpErrors, thePackage packages.Package, jsonPackage packages.Package) []generator.CodeFile ModelsDefinitionsImports() []string ModelsUsageImports() []string SetupLibrary(thePackage packages.Package) []generator.CodeFile JsonHelpersMethods() string JsonParseException(thePackage packages.Package) *generator.CodeFile ModelsValidation(thePackage, errorsModelsPackage, jsonPackage packages.Package) *generator.CodeFile CreateJsonMapperField(w *generator.Writer, annotation string) InitJsonMapper(w *generator.Writer) JsonRead(varJson string, typ *spec.TypeDef) string JsonWrite(varData string, typ *spec.TypeDef) string ReadJson(jsonStr string, typ *spec.TypeDef) (string, string) WriteJson(varData string, typ *spec.TypeDef) (string, string) WriteJsonNoCheckedException(varData string, typ *spec.TypeDef) string }
func NewGenerator ¶
type JacksonGenerator ¶
func NewJacksonGenerator ¶
func NewJacksonGenerator(types *types.Types) *JacksonGenerator
func (*JacksonGenerator) CreateJsonMapperField ¶
func (g *JacksonGenerator) CreateJsonMapperField(w *generator.Writer, annotation string)
func (*JacksonGenerator) ErrorModels ¶ added in v2.1.2134
func (g *JacksonGenerator) ErrorModels(httperrors *spec.HttpErrors, thePackage packages.Package, jsonPackage packages.Package) []generator.CodeFile
func (*JacksonGenerator) InitJsonMapper ¶
func (g *JacksonGenerator) InitJsonMapper(w *generator.Writer)
func (*JacksonGenerator) JsonHelpersMethods ¶
func (g *JacksonGenerator) JsonHelpersMethods() string
func (*JacksonGenerator) JsonParseException ¶
func (g *JacksonGenerator) JsonParseException(thePackage packages.Package) *generator.CodeFile
func (*JacksonGenerator) JsonRead ¶
func (g *JacksonGenerator) JsonRead(varJson string, typ *spec.TypeDef) string
func (*JacksonGenerator) JsonWrite ¶
func (g *JacksonGenerator) JsonWrite(varData string, typ *spec.TypeDef) string
func (*JacksonGenerator) ModelsDefinitionsImports ¶
func (g *JacksonGenerator) ModelsDefinitionsImports() []string
func (*JacksonGenerator) ModelsUsageImports ¶
func (g *JacksonGenerator) ModelsUsageImports() []string
func (*JacksonGenerator) ModelsValidation ¶ added in v2.1.2134
func (g *JacksonGenerator) ModelsValidation(thePackage, errorsModelsPackage, jsonPackage packages.Package) *generator.CodeFile
func (*JacksonGenerator) SetupLibrary ¶
func (g *JacksonGenerator) SetupLibrary(thePackage packages.Package) []generator.CodeFile
func (*JacksonGenerator) WriteJsonNoCheckedException ¶
func (g *JacksonGenerator) WriteJsonNoCheckedException(varData string, typ *spec.TypeDef) string
type MoshiGenerator ¶
func NewMoshiGenerator ¶
func NewMoshiGenerator(types *types.Types) *MoshiGenerator
func (*MoshiGenerator) CreateJsonMapperField ¶
func (g *MoshiGenerator) CreateJsonMapperField(w *generator.Writer, annotation string)
func (*MoshiGenerator) ErrorModels ¶ added in v2.1.2134
func (g *MoshiGenerator) ErrorModels(httperrors *spec.HttpErrors, thePackage packages.Package, jsonPackage packages.Package) []generator.CodeFile
func (*MoshiGenerator) InitJsonMapper ¶
func (g *MoshiGenerator) InitJsonMapper(w *generator.Writer)
func (*MoshiGenerator) JsonHelpersMethods ¶
func (g *MoshiGenerator) JsonHelpersMethods() string
func (*MoshiGenerator) JsonParseException ¶
func (g *MoshiGenerator) JsonParseException(thePackage packages.Package) *generator.CodeFile
func (*MoshiGenerator) JsonRead ¶
func (g *MoshiGenerator) JsonRead(varJson string, typ *spec.TypeDef) string
func (*MoshiGenerator) JsonWrite ¶
func (g *MoshiGenerator) JsonWrite(varData string, typ *spec.TypeDef) string
func (*MoshiGenerator) ModelsDefinitionsImports ¶
func (g *MoshiGenerator) ModelsDefinitionsImports() []string
func (*MoshiGenerator) ModelsUsageImports ¶
func (g *MoshiGenerator) ModelsUsageImports() []string
func (*MoshiGenerator) ModelsValidation ¶ added in v2.1.2134
func (g *MoshiGenerator) ModelsValidation(thePackage, errorsModelsPackage, jsonPackage packages.Package) *generator.CodeFile
func (*MoshiGenerator) SetupLibrary ¶
func (g *MoshiGenerator) SetupLibrary(thePackage packages.Package) []generator.CodeFile
func (*MoshiGenerator) WriteJsonNoCheckedException ¶
func (g *MoshiGenerator) WriteJsonNoCheckedException(varData string, typ *spec.TypeDef) string
Click to show internal directories.
Click to hide internal directories.