![JAR search and dependency download from the Maven repository](/logo.png)
com.arangodb.arch.UnstableApi 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.arch;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Indicates a public API that has references to internal classes and that should change in the next major release.
* Referenced internal classes are annotated with {@link UsedInApi}.
* Architectural tests consider these annotation to tolerate referencing annotated elements.
*/
@Retention(RetentionPolicy.CLASS)
@Target({
ElementType.TYPE,
ElementType.METHOD,
ElementType.PARAMETER,
ElementType.FIELD
})
public @interface UnstableApi {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy