![JAR search and dependency download from the Maven repository](/logo.png)
com.arangodb.serde.InternalTo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core Show documentation
Show all versions of core Show documentation
Core module for ArangoDB Java Driver
package com.arangodb.serde;
import com.fasterxml.jackson.annotation.JacksonAnnotationsInside;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* @author Michele Rastelli
* Annotation for `_to` field used by the InternalSerde. It works with shaded driver and relocated Jackson.
*/
@Target({ElementType.FIELD, ElementType.METHOD, ElementType.PARAMETER})
@Retention(RetentionPolicy.RUNTIME)
@JacksonAnnotationsInside
@JsonProperty("_to")
@JsonInclude(JsonInclude.Include.NON_NULL)
public @interface InternalTo {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy