it.auties.protobuf.utils.RawProtobufConverter Maven / Gradle / Ivy
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