-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Mark PackedBitVector as Beta, aligning with binary quantization preview #1594
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 2 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
272bd0e
Mark PackedBitVector as Beta as binary quantization is in public prev…
vbabanin 86380db
Update package-info.java
vbabanin 4154675
Update bson/src/main/org/bson/PackedBitVector.java
vbabanin 0562f90
Update bson/src/main/org/bson/PackedBitVector.java
vbabanin 298cb30
Merge branch 'main' into JAVA-5738
vbabanin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/* | ||
* Copyright 2008-present MongoDB, Inc. | ||
* Copyright 2010 The Guava Authors | ||
* Copyright 2011 The Guava Authors | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.bson.annotations; | ||
|
||
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; | ||
|
||
/** | ||
* Signifies that a public API (public class, method or field) is subject to | ||
* incompatible changes, or even removal, in a future release. An API bearing | ||
* this annotation is exempt from any compatibility guarantees made by its | ||
* containing library. Note that the presence of this annotation implies nothing | ||
* about the quality or performance of the API in question, only the fact that | ||
* it is not "API-frozen." | ||
* | ||
* <p>It is generally safe for <i>applications</i> to depend on beta APIs, at | ||
* the cost of some extra work during upgrades. However it is generally | ||
* inadvisable for <i>libraries</i> (which get included on users' CLASSPATHs, | ||
* outside the library developers' control) to do so. | ||
* | ||
**/ | ||
@Retention(RetentionPolicy.CLASS) | ||
@Target({ | ||
ElementType.ANNOTATION_TYPE, | ||
ElementType.CONSTRUCTOR, | ||
ElementType.FIELD, | ||
ElementType.METHOD, | ||
ElementType.PACKAGE, | ||
ElementType.TYPE }) | ||
@Documented | ||
@Beta(Reason.CLIENT) | ||
public @interface Beta { | ||
/** | ||
* @return The reason an API element is marked with {@link Beta}. | ||
*/ | ||
Reason[] value(); | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/* | ||
* Copyright 2008-present MongoDB, Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.bson.annotations; | ||
|
||
/** | ||
* Enumerates the reasons an API element might be marked with annotations like {@link Beta}. | ||
*/ | ||
@Beta(Reason.CLIENT) | ||
public enum Reason { | ||
/** | ||
* Indicates that the status of the driver API is the reason for the annotation. | ||
*/ | ||
CLIENT, | ||
|
||
/** | ||
* The driver API relies on the server API. | ||
* This dependency is the reason for the annotation and suggests that changes in the server API could impact the driver API. | ||
*/ | ||
SERVER | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/* | ||
* Copyright 2008-present MongoDB, Inc. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
/** | ||
* Contains annotations that can apply to any part of the BSON library code. | ||
*/ | ||
package org.bson.annotations; |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.