org.nustaq.serialization.coders.JSONAsString Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fst Show documentation
Show all versions of fst Show documentation
A fast java serialization drop in-replacement and some serialization based utils such as Structs and OffHeap Memory.
The 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