it.auties.protobuf.serialization.converter.ProtobufSerializerElement Maven / Gradle / Ivy
package it.auties.protobuf.serialization.converter;
import javax.lang.model.element.ExecutableElement;
public record ProtobufSerializerElement(ExecutableElement element, boolean primitive, boolean optional, String... arguments) implements ProtobufConverterElement {
@Override
public ProtobufConverterType type() {
return ProtobufConverterType.SERIALIZER;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy