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

io.vertx.up.uca.serialization.BufferSaber Maven / Gradle / Ivy

There is a newer version: 0.9.0
Show newest version
package io.vertx.up.uca.serialization;

import io.vertx.core.buffer.Buffer;
import io.vertx.up.eon.Values;
import io.vertx.up.fn.Fn;

/**
 * Buffer
 */
public class BufferSaber extends BaseSaber {
    @Override
    public Object from(final Class paramType,
                       final String literal) {
        return Fn.getNull(() ->
                        Fn.getSemi(Buffer.class == paramType, getLogger(),
                                () -> {
                                    final Buffer buffer = Buffer.buffer();
                                    buffer.appendBytes(literal.getBytes(Values.CHARSET));
                                    return buffer;
                                }, Buffer::buffer),
                paramType, literal);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy