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

com.sksamuel.avro4s.AvroJavaName Maven / Gradle / Ivy

package com.sksamuel.avro4s;

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

/**
 * Overrides a java type's name when avro4s converts the type to an AVRO schema.
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ ElementType.TYPE, ElementType.FIELD })
public @interface AvroJavaName {
    String value();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy