com.datastrato.gravitino.annotation.Evolving Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
Gravitino is a high-performance, geo-distributed and federated metadata lake.
The newest version!
/*
* Copyright 2024 Datastrato Pvt Ltd.
* This software is licensed under the Apache License version 2.
*/
package com.datastrato.gravitino.annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* APIs that are still evolving towards becoming stable APIs, and can change from one feature
* release to another (0.5.0 to 0.6.0).
*/
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({
ElementType.PACKAGE,
ElementType.CONSTRUCTOR,
ElementType.METHOD,
ElementType.TYPE,
ElementType.FIELD
})
public @interface Evolving {}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy