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

org.nustaq.serialization.coders.JSONAsString Maven / Gradle / Ivy

Go to download

A fast java serialization drop in-replacement and some serialization based utils such as Structs and OffHeap Memory.

There is a newer version: 3.0.4-jdk17
Show newest version
package org.nustaq.serialization.coders;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Created by ruedi on 21.03.17.
 *
 * advice json serializer to convert annotated field to a string (e.g. byte or char arrays)
 *
 * !!!!!!!! supports byte[] only currently !!!!!!!!!!!!!!!
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)

public @interface JSONAsString {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy