io.permazen.encoding.PrimitiveWrapperEncoding Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of permazen-encoding Show documentation
Show all versions of permazen-encoding Show documentation
Permazen classes for encoding Java values to/from binary representations.
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