You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: services-custom/dynamodb-enhanced/src/main/java/software/amazon/awssdk/enhanced/dynamodb/model/QueryEnhancedRequest.java
+5-5
Original file line number
Diff line number
Diff line change
@@ -119,19 +119,19 @@ public Boolean scanIndexForward() {
119
119
}
120
120
121
121
/**
122
-
* Returns the value of select, or null if it doesn't exist.
122
+
* Returns the value of select as Enum, or null if it doesn't exist.
123
123
* @return
124
124
*/
125
-
publicStringselect() {
126
-
returnselect;
125
+
publicSelectselect() {
126
+
returnSelect.fromValue(this.select);
127
127
}
128
128
129
129
/**
130
130
* Returns the value of select as a string, or null if it doesn't exist.
131
131
* @return
132
132
*/
133
133
publicStringselectAsString() {
134
-
returnString.valueOf(select);
134
+
returnselect;
135
135
}
136
136
137
137
/**
@@ -307,7 +307,7 @@ public Builder scanIndexForward(Boolean scanIndexForward) {
0 commit comments