Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/pr-build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ jobs:
- name: Build and Verify
run: mvn --no-transfer-progress --batch-mode verify

# - name: Validate Javadoc creation
# run: mvn --no-transfer-progress --batch-mode javadoc:jar
- name: Validate Javadoc creation
run: mvn --no-transfer-progress --batch-mode javadoc:jar -pl client-api

- name: Package surefire test results
if: failure()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ void rangeScan(
*
* @param key
* @param listener
* @param optionss
* @param options
* @return
*/
Closeable getSequenceUpdates(
Expand Down
8 changes: 4 additions & 4 deletions client-api/src/main/java/io/oxia/client/api/GetOption.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,26 +25,26 @@ public sealed interface GetOption

/**
* ComparisonFloor option will make the get operation to search for the record whose key is the
* highest key <= to the supplied key.
* highest key &le; to the supplied key.
*/
GetOption ComparisonFloor = new OptionComparisonType(OptionComparisonType.ComparisonType.Floor);

/**
* ComparisonCeiling option will make the get operation to search for the record whose key is the
* lowest key >= to the supplied key.
* lowest key &ge; to the supplied key.
*/
GetOption ComparisonCeiling =
new OptionComparisonType(OptionComparisonType.ComparisonType.Ceiling);

/**
* ComparisonLower option will make the get operation to search for the record whose key is
* strictly < to the supplied key.
* strictly &lt; to the supplied key.
*/
GetOption ComparisonLower = new OptionComparisonType(OptionComparisonType.ComparisonType.Lower);

/**
* ComparisonHigher option will make the get operation to search for the record whose key is
* strictly > to the supplied key.
* strictly &gt; to the supplied key.
*/
GetOption ComparisonHigher = new OptionComparisonType(OptionComparisonType.ComparisonType.Higher);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
import java.lang.reflect.Constructor;

/**
* This class loads the implementation for {@link OxiaClientBuilderImpl} and allows you to decouple
* the API from the actual implementation. <b>This class is internal to the Oxia API implementation,
* and it is not part of the public API it is not meant to be used by client applications.</b>
* This class loads the implementation for {@link OxiaClientBuilder} and allows you to decouple the
* API from the actual implementation. <b>This class is internal to the Oxia API implementation, and
* it is not part of the public API it is not meant to be used by client applications.</b>
*/
public class DefaultImplementation {
private static final Constructor<?> CONSTRUCTOR;
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.3</version>
<version>3.12.0</version>
<configuration>
<doclint>none</doclint>
<notimestamp>true</notimestamp>
Expand Down