Searched defs:mapConverter (Results 1 – 2 of 2) sorted by relevance
14 type mapConverter struct { struct15 goType reflect.Type // map[K]V16 keyConv, valConv Converter30 func (c *mapConverter) PBValueOf(v reflect.Value) protoreflect.Value {37 func (c *mapConverter) GoValueOf(v protoreflect.Value) reflect.Value {41 func (c *mapConverter) IsValidPB(v protoreflect.Value) bool {49 func (c *mapConverter) IsValidGo(v reflect.Value) bool {53 func (c *mapConverter) New() protoreflect.Value {57 func (c *mapConverter) Zero() protoreflect.Value {
87 …public static <K, V> MapAttributeConverter<Map<K, V>> mapConverter(StringConverter<K> keyConverter, in mapConverter() method in MapAttributeConverter