Uses of Interface
com.amilesend.onedrive.parse.resource.parser.GsonParser
Packages that use GsonParser
-
Uses of GsonParser in com.amilesend.onedrive.connection
Methods in com.amilesend.onedrive.connection with parameters of type GsonParserModifier and TypeMethodDescription<T> TOneDriveConnection.execute(@NonNull okhttp3.Request request, @NonNull GsonParser<T> parser) Executes the givenRequestand parses the JSON-formatted response with givenGsonParser.<T> CompletableFuture<T> OneDriveConnection.executeAsync(@NonNull okhttp3.Request request, @NonNull GsonParser<T> parser) Executes the givenRequestand parses the JSON-formatted response with givenGsonParser. -
Uses of GsonParser in com.amilesend.onedrive.parse.resource.parser
Classes in com.amilesend.onedrive.parse.resource.parser that implement GsonParserModifier and TypeClassDescriptionclassBasicParser<T>Defines a basicGsonParserimplementation for single object type.classParses a response body that contains a list ofDriveItemVersions.classParses a response body that contains aListItem.classParses a response body that contains a list ofListItemVersions.classParses a response body that contains aListItemVersion.classParses a response body that contains a list ofListItems.classDefines aGsonParserimplementation for a response body that contains a list of items.classMapParser<K,V> Defines aGsonParserimplementation for a map of key value pairs.classParses a response body that contains a list ofPermissions.classParses a response body that contains aPermission.classParses a response body that contains aPreview.classParses a response body that contains aSpecialDriveItem.Fields in com.amilesend.onedrive.parse.resource.parser declared as GsonParserModifier and TypeFieldDescriptionstatic final GsonParser<AsyncJobStatus> Parsers.ASYNC_JOB_STATUS_PARSERstatic final GsonParser<List<DriveItem>> Parsers.DRIVE_ITEM_LIST_PARSERstatic final GsonParser<DriveItemPage> Parsers.DRIVE_ITEM_PAGE_PARSERstatic final GsonParser<DriveItem> Parsers.DRIVE_ITEM_PARSERstatic final GsonParser<List<Drive>> Parsers.DRIVE_LIST_PARSERstatic final GsonParser<Drive> Parsers.DRIVE_PARSERstatic final GsonParser<Map<String, Object>> Parsers.FIELD_VALUE_SET_PARSERstatic final GsonParser<GetColumnValuesResponse> static final GsonParser<List<ItemActivity>> Parsers.ITEM_ACTIVITY_LIST_PARSERstatic final GsonParser<List<Site>> Parsers.SITE_LIST_PARSERstatic final GsonParser<Site> Parsers.SITE_PARSERstatic final GsonParser<List<ThumbnailSet>> Parsers.THUMBNAIL_SET_LIST_PARSERMethods in com.amilesend.onedrive.parse.resource.parser that return GsonParserModifier and TypeMethodDescriptionstatic GsonParser<List<DriveItemVersion>> Parsers.newDriveItemVersionListParser(String driveItemId, String name) static GsonParser<ListItem> Parsers.newListItemParser(String siteId, String listId) static GsonParser<List<ListItemVersion>> Parsers.newListItemVersionListParser(String siteId, String listId, String listItemId) static GsonParser<ListItemVersion> Parsers.newListItemVersionParser(String siteId, String listId, String listItemId) static GsonParser<List<List>> Parsers.newListListParser(String siteId) static GsonParser<List<Permission>> Parsers.newPermissionListParser(String driveItemId) static GsonParser<Permission> Parsers.newPermissionParser(String driveItemId) static GsonParser<Preview> Parsers.newPreviewParser(String driveItemId) static GsonParser<SpecialDriveItem> Parsers.newSpecialDriveItemParser(SpecialFolder.Type specialFolderType)