File tree Expand file tree Collapse file tree 3 files changed +6
-10
lines changed
marklogic-client-api/src/main/java/com/marklogic/client/type Expand file tree Collapse file tree 3 files changed +6
-10
lines changed Original file line number Diff line number Diff line change @@ -49,10 +49,6 @@ Full documentation is available at:
4949* [ Java Application Developer's Guide] ( http://docs.marklogic.com/guide/java )
5050* [ JavaDoc] ( http://docs.marklogic.com/javadoc/client/index.html )
5151
52- ## Including JAXB support
53-
54- TODO, Need to rewrite this for Java Client 7.0.0.
55-
5652## Support
5753
5854The MarkLogic Java Client is maintained by [ MarkLogic] ( https://www.marklogic.com/ ) Engineering and is made available under
Original file line number Diff line number Diff line change 11group =com.marklogic
2- version =7.0-SNAPSHOT
2+ version =7.0.0
33describedName =MarkLogic Java Client API
44publishUrl =file:../marklogic-java/releases
55
Original file line number Diff line number Diff line change 99 */
1010public interface PlanSearchOptions {
1111 /**
12- * Changed in release 6.7 .0 to return a float, as the server requires a float and throws an error on a double.
12+ * Changed in release 7.0 .0 to return a float, as the server requires a float and throws an error on a double.
1313 */
1414 XsFloatVal getQualityWeight ();
1515 ScoreMethod getScoreMethod ();
1616 /**
17- * @since 6.7 .0
17+ * @since 7.0 .0
1818 */
1919 XsDoubleVal getBm25LengthWeight ();
2020 /**
21- * Changed in release 6.7 .0 to return a float, as the server requires a float and throws an error on a double.
21+ * Changed in release 7.0 .0 to return a float, as the server requires a float and throws an error on a double.
2222 */
2323 PlanSearchOptions withQualityWeight (float qualityWeight );
2424 /**
25- * Changed in release 6.7 .0 to return a float, as the server requires a float and throws an error on a double.
25+ * Changed in release 7.0 .0 to return a float, as the server requires a float and throws an error on a double.
2626 */
2727 PlanSearchOptions withQualityWeight (XsFloatVal qualityWeight );
2828 PlanSearchOptions withScoreMethod (ScoreMethod scoreMethod );
2929 /**
30- * @since 6.7 .0
30+ * @since 7.0 .0
3131 */
3232 PlanSearchOptions withBm25LengthWeight (double bm25LengthWeight );
3333 enum ScoreMethod {
You can’t perform that action at this time.
0 commit comments