diff --git a/src/main/java/com/aerospike/dsl/Index.java b/src/main/java/com/aerospike/dsl/Index.java index d296c3a..b408e70 100644 --- a/src/main/java/com/aerospike/dsl/Index.java +++ b/src/main/java/com/aerospike/dsl/Index.java @@ -23,6 +23,10 @@ public class Index { * Name of the indexed bin */ private final String bin; + /** + * Name of the index + */ + private final String name; /** * {@link IndexType} of the index */ diff --git a/src/main/java/com/aerospike/dsl/parts/operand/OperandFactory.java b/src/main/java/com/aerospike/dsl/parts/operand/OperandFactory.java index ead32af..8440693 100644 --- a/src/main/java/com/aerospike/dsl/parts/operand/OperandFactory.java +++ b/src/main/java/com/aerospike/dsl/parts/operand/OperandFactory.java @@ -8,7 +8,7 @@ * This factory provides a static method to dynamically create concrete operand implementations * such as {@link StringOperand}, {@link BooleanOperand}, {@link FloatOperand}, and {@link IntOperand} * from various Java primitive and wrapper types. It centralizes the logic for type-specific object creation. - *
+ * * @see StringOperand * @see BooleanOperand * @see FloatOperand @@ -26,10 +26,10 @@ public interface OperandFactory { *