-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release Aspose.Cells Cloud SDK 24.8.0
- Loading branch information
1 parent
a4f60e0
commit b7a82c9
Showing
13 changed files
with
731 additions
and
7 deletions.
There are no files selected for viewing
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
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,18 @@ | ||
# **postTrimContent API** | ||
|
||
|
||
|
||
```bash | ||
|
||
POST http://api.aspose.cloud/v3.0//cells/trimcontent | ||
|
||
``` | ||
|
||
## The request parameters of **postTrimContent** API are: | ||
|
||
| Parameter Name | Type | Path/Query String/HTTPBody | Description | | ||
| :- | :- | :- |:- | | ||
|trimContentOptions|Class|Body|| | ||
|
||
|
||
The [OpenAPI Specification](https://reference.aspose.cloud/cells/#/TextProcessingController/PostTrimContent) defines a publicly accessible programming interface and lets you carry out REST interactions directly from a web browser. |
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,11 @@ | ||
# **scopeItem** | ||
|
||
|
||
|
||
## **Properties** | ||
|
||
| Property Name | Property Type | Nullable | ReadOnly | DefaultValue | Description | | ||
| :- | :- | :- |:- | :- | :- | | ||
|WorksheetName|String|true|false | || | ||
|Ranges|Array|true|false | || | ||
|
2 changes: 1 addition & 1 deletion
2
docs/model/search-scope-options-type.md → docs/model/scope-options-type.md
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# **searchScopeOptionsType** | ||
# **scopeOptionsType** | ||
|
||
|
||
|
||
|
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,11 @@ | ||
# **scopeOptions** | ||
|
||
|
||
|
||
## **Properties** | ||
|
||
| Property Name | Property Type | Nullable | ReadOnly | DefaultValue | Description | | ||
| :- | :- | :- |:- | :- | :- | | ||
|Scope|String|true|false | || | ||
|ScopeItems|Array|true|false | || | ||
|
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,19 @@ | ||
# **trimContentOptions** | ||
|
||
|
||
|
||
## **Properties** | ||
|
||
| Property Name | Property Type | Nullable | ReadOnly | DefaultValue | Description | | ||
| :- | :- | :- |:- | :- | :- | | ||
|DataSource|Class|true|false | || | ||
|FileInfo|Class|true|false | || | ||
|TrimContent|String|true|false | || | ||
|TrimLeading|Boolean|true|false | || | ||
|TrimTrailing|Boolean|true|false | || | ||
|TrimSpaceBetweenWordTo1|Boolean|true|false | || | ||
|TrimNonBreakingSpaces|Boolean|true|false | || | ||
|RemoveExtraLineBreaks|Boolean|true|false | || | ||
|RemoveAllLineBreaks|Boolean|true|false | || | ||
|ScopeOptions|Class|true|false | || | ||
|
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
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
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
116 changes: 116 additions & 0 deletions
116
src/main/java/com/aspose/cloud/cells/model/ScopeItem.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,116 @@ | ||
/* | ||
* -------------------------------------------------------------------------------- | ||
* <copyright company="Aspose" file="ScopeItem.java"> | ||
* Copyright (c) 2024 Aspose.Cells Cloud | ||
* </copyright> | ||
* <summary> | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy | ||
* of this software and associated documentation files (the "Software"), to deal | ||
* in the Software without restriction, including without limitation the rights | ||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
* copies of the Software, and to permit persons to whom the Software is | ||
* furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in all | ||
* copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
* SOFTWARE. | ||
* </summary> | ||
* -------------------------------------------------------------------------------- | ||
*/ | ||
|
||
package com.aspose.cloud.cells.model; | ||
|
||
import java.util.Objects; | ||
import io.swagger.annotations.ApiModelProperty; | ||
import com.aspose.cloud.cells.model.*; | ||
import java.util.ArrayList; | ||
import java.util.List; | ||
import com.google.gson.annotations.SerializedName; | ||
import java.time.OffsetDateTime; | ||
|
||
|
||
public class ScopeItem { | ||
@SerializedName("WorksheetName") | ||
private String worksheetName ; | ||
|
||
public ScopeItem worksheetName(String worksheetName) { | ||
this.worksheetName = worksheetName; | ||
return this; | ||
} | ||
|
||
@ApiModelProperty(value = "") | ||
public String getWorksheetName() { | ||
return worksheetName; | ||
} | ||
|
||
public void setWorksheetName(String worksheetName) { | ||
this.worksheetName = worksheetName; | ||
} | ||
|
||
@SerializedName("Ranges") | ||
private List<String> ranges ; | ||
|
||
public ScopeItem ranges(List<String> ranges) { | ||
this.ranges = ranges; | ||
return this; | ||
} | ||
|
||
@ApiModelProperty(value = "") | ||
public List<String> getRanges() { | ||
return ranges; | ||
} | ||
|
||
public void setRanges(List<String> ranges) { | ||
this.ranges = ranges; | ||
} | ||
|
||
@Override | ||
public boolean equals(java.lang.Object o) { | ||
if (this == o) { | ||
return true; | ||
} | ||
if (o == null || getClass() != o.getClass()) { | ||
return false; | ||
} | ||
|
||
ScopeItem scopeItem = (ScopeItem) o; | ||
return | ||
Objects.equals(this.worksheetName, scopeItem.worksheetName) && | ||
Objects.equals(this.ranges, scopeItem.ranges); | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return Objects.hash(worksheetName, ranges); | ||
} | ||
@Override | ||
public String toString() { | ||
StringBuilder sb = new StringBuilder(); | ||
sb.append("class ScopeItem {\n"); | ||
sb.append(" worksheetName: ").append(toIndentedString(getWorksheetName())).append("\n"); | ||
sb.append(" ranges: ").append(toIndentedString(getRanges())).append("\n"); | ||
sb.append("}"); | ||
return sb.toString(); | ||
} | ||
|
||
/** | ||
* Convert the given object to string with each line indented by 4 spaces | ||
* (except the first line). | ||
*/ | ||
private String toIndentedString(java.lang.Object o) { | ||
if (o == null) { | ||
return "null"; | ||
} | ||
return o.toString().replace("\n", "\n "); | ||
} | ||
|
||
|
||
} | ||
|
Oops, something went wrong.