All Downloads are FREE. Search and download functionalities are using the official Maven repository.

it.auties.protobuf.utils.RawProtobufConverter Maven / Gradle / Ivy

There is a newer version: 1.16
Show newest version
package it.auties.protobuf.utils;

import org.apache.logging.log4j.core.config.plugins.convert.HexConverter;
import picocli.CommandLine;

public class RawProtobufConverter implements CommandLine.ITypeConverter {
    @Override
    public byte[] convert(String s) {
        return HexConverter.parseHexBinary(s);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy