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:
49
49
* [ Java Application Developer's Guide] ( http://docs.marklogic.com/guide/java )
50
50
* [ JavaDoc] ( http://docs.marklogic.com/javadoc/client/index.html )
51
51
52
- ## Including JAXB support
53
-
54
- TODO, Need to rewrite this for Java Client 7.0.0.
55
-
56
52
## Support
57
53
58
54
The 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 1
1
group =com.marklogic
2
- version =7.0-SNAPSHOT
2
+ version =7.0.0
3
3
describedName =MarkLogic Java Client API
4
4
publishUrl =file:../marklogic-java/releases
5
5
Original file line number Diff line number Diff line change 9
9
*/
10
10
public interface PlanSearchOptions {
11
11
/**
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.
13
13
*/
14
14
XsFloatVal getQualityWeight ();
15
15
ScoreMethod getScoreMethod ();
16
16
/**
17
- * @since 6.7 .0
17
+ * @since 7.0 .0
18
18
*/
19
19
XsDoubleVal getBm25LengthWeight ();
20
20
/**
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.
22
22
*/
23
23
PlanSearchOptions withQualityWeight (float qualityWeight );
24
24
/**
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.
26
26
*/
27
27
PlanSearchOptions withQualityWeight (XsFloatVal qualityWeight );
28
28
PlanSearchOptions withScoreMethod (ScoreMethod scoreMethod );
29
29
/**
30
- * @since 6.7 .0
30
+ * @since 7.0 .0
31
31
*/
32
32
PlanSearchOptions withBm25LengthWeight (double bm25LengthWeight );
33
33
enum ScoreMethod {
You can’t perform that action at this time.
0 commit comments