Home | History | Annotate | Download | only in types

Lines Matching refs:custom

32 class CustomTypeConverterWrapper(val custom: CustomTypeConverter)
33 : TypeConverter(custom.from, custom.to) {
37 if (custom.isStatic) {
39 outputVarName, custom.typeName,
40 custom.methodName, inputVarName)
44 custom.methodName, inputVarName)
50 val baseName = (custom.typeName as ClassName).simpleName().decapitalize()
52 baseName, custom.typeName) {
54 return "converter_${custom.typeName}"
60 builder.initializer("new $T()", custom.typeName)