![JAR search and dependency download from the Maven repository](/logo.png)
com.arangodb.serde.InternalKey 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 `_key` 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("_key")
@JsonInclude(JsonInclude.Include.NON_NULL)
public @interface InternalKey {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy