]> git.proxmox.com Git - ceph.git/blame - ceph/src/rocksdb/java/src/main/java/org/rocksdb/Experimental.java
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / rocksdb / java / src / main / java / org / rocksdb / Experimental.java
CommitLineData
7c673cae 1// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
11fdf7f2
TL
2// This source code is licensed under both the GPLv2 (found in the
3// COPYING file in the root directory) and Apache 2.0 License
4// (found in the LICENSE.Apache file in the root directory).
7c673cae
FG
5
6package org.rocksdb;
7
8import java.lang.annotation.ElementType;
9import java.lang.annotation.Documented;
10import java.lang.annotation.Retention;
11import java.lang.annotation.RetentionPolicy;
12import java.lang.annotation.Target;
13
14/**
15 * Marks a feature as experimental, meaning that it is likely
16 * to change or even be removed/re-engineered in the future
17 */
18@Documented
19@Retention(RetentionPolicy.SOURCE)
20@Target({ElementType.TYPE, ElementType.METHOD})
21public @interface Experimental {
22 String value();
23}