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

io.permazen.encoding.PrimitiveWrapperEncoding Maven / Gradle / Ivy

The newest version!

/*
 * Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
 */

package io.permazen.encoding;

/**
 * Primitive wrapper type.
 *
 * @param  Java primitive wrapper type
 */
public class PrimitiveWrapperEncoding extends NullSafeEncoding {

    private static final long serialVersionUID = 3988749140485792884L;

    public PrimitiveWrapperEncoding(PrimitiveEncoding primitiveType) {
        super(EncodingIds.builtin(primitiveType.primitive.getLongName()), primitiveType);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy