-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: rename
StorageValueType
to StorageItemType
To align with the cache naming, we rename this to `StorageItemType`. A future RPC could be `getItemType` and the name will align.
- Loading branch information
Showing
3 changed files
with
26 additions
and
26 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
momento-sdk/src/main/java/momento/sdk/responses/storage/StorageItemType.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package momento.sdk.responses.storage; | ||
|
||
/** Type of item in a store. */ | ||
public enum StorageItemType { | ||
/** Item is a byte array. */ | ||
BYTE_ARRAY, | ||
/** Item is a string. */ | ||
STRING, | ||
/** Item is a long. */ | ||
LONG, | ||
/** Item is a double. */ | ||
DOUBLE | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 0 additions & 13 deletions
13
momento-sdk/src/main/java/momento/sdk/responses/storage/ValueType.java
This file was deleted.
Oops, something went wrong.