Skip to content

Commit 30b6f52

Browse files
committed
docs: Replace relative links
1 parent 4adb913 commit 30b6f52

File tree

23 files changed

+220
-158
lines changed

23 files changed

+220
-158
lines changed

natural-language-understanding/src/main/java/com/ibm/watson/developer_cloud/natural_language_understanding/v1/NaturalLanguageUnderstanding.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@
3131
* Language Understanding will give you results for the features you request. The service cleans HTML content before
3232
* analysis by default, so the results can ignore most advertisements and other unwanted content.
3333
*
34-
* You can create [custom models](/docs/services/natural-language-understanding/customizing.html) with Watson Knowledge
34+
* You can create [custom models](https://cloud.ibm.com/docs/services/natural-language-understanding/customizing
35+
* .html) with Watson Knowledge
3536
* Studio to detect custom entities and relations in Natural Language Understanding.
3637
*
3738
* @version v1
@@ -167,7 +168,8 @@ public ServiceCall<Void> deleteModel(DeleteModelOptions deleteModelOptions) {
167168
/**
168169
* List models.
169170
*
170-
* Lists Watson Knowledge Studio [custom models](/docs/services/natural-language-understanding/customizing.html) that
171+
* Lists Watson Knowledge Studio [custom models](https://cloud.ibm
172+
* .com/docs/services/natural-language-understanding/customizing.html) that
171173
* are deployed to your Natural Language Understanding service.
172174
*
173175
* @param listModelsOptions the {@link ListModelsOptions} containing the options for the call
@@ -185,7 +187,8 @@ public ServiceCall<ListModelsResults> listModels(ListModelsOptions listModelsOpt
185187
/**
186188
* List models.
187189
*
188-
* Lists Watson Knowledge Studio [custom models](/docs/services/natural-language-understanding/customizing.html) that
190+
* Lists Watson Knowledge Studio [custom models](https://cloud.ibm
191+
* .com/docs/services/natural-language-understanding/customizing.html) that
189192
* are deployed to your Natural Language Understanding service.
190193
*
191194
* @return a {@link ServiceCall} with a response type of {@link ListModelsResults}

natural-language-understanding/src/main/java/com/ibm/watson/developer_cloud/natural_language_understanding/v1/model/AnalyzeOptions.java

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,8 @@ public Features features() {
265265
* Gets the clean.
266266
*
267267
* Set this to `false` to disable webpage cleaning. To learn more about webpage cleaning, see the [Analyzing
268-
* webpages](/docs/services/natural-language-understanding/analyzing-webpages.html) documentation.
268+
* webpages](https://cloud.ibm.com/docs/services/natural-language-understanding/analyzing-webpages.html)
269+
* documentation.
269270
*
270271
* @return the clean
271272
*/
@@ -276,9 +277,9 @@ public Boolean clean() {
276277
/**
277278
* Gets the xpath.
278279
*
279-
* An [XPath query](/docs/services/natural-language-understanding/analyzing-webpages.html#xpath) to perform on `html`
280-
* or `url` input. Results of the query will be appended to the cleaned webpage text before it is analyzed. To analyze
281-
* only the results of the XPath query, set the `clean` parameter to `false`.
280+
* An [XPath query](https://cloud.ibm.com/docs/services/natural-language-understanding/analyzing-webpages
281+
* .html#xpath) to perform on `html` or `url` input. Results of the query will be appended to the cleaned webpage
282+
* text before it is analyzed. To analyze only the results of the XPath query, set the `clean` parameter to `false`.
282283
*
283284
* @return the xpath
284285
*/

natural-language-understanding/src/main/java/com/ibm/watson/developer_cloud/natural_language_understanding/v1/model/CategoriesResult.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ public class CategoriesResult extends GenericModel {
2626
* Gets the label.
2727
*
2828
* The path to the category through the 5-level taxonomy hierarchy. For the complete list of categories, see the
29-
* [Categories hierarchy](/docs/services/natural-language-understanding/categories.html#categories-hierarchy)
29+
* [Categories hierarchy](https://cloud.ibm.com/docs/services/natural-language-understanding/categories
30+
* .html#categories-hierarchy)
3031
* documentation.
3132
*
3233
* @return the label

natural-language-understanding/src/main/java/com/ibm/watson/developer_cloud/natural_language_understanding/v1/model/EntitiesOptions.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
/**
1818
* Identifies people, cities, organizations, and other entities in the content. See [Entity types and
19-
* subtypes](/docs/services/natural-language-understanding/entity-types.html).
19+
* subtypes](https://cloud.ibm.com/docs/services/natural-language-understanding/entity-types.html).
2020
*
2121
* Supported languages: English, French, German, Italian, Japanese, Korean, Portuguese, Russian, Spanish, Swedish.
2222
* Arabic, Chinese, and Dutch custom models are also supported.

natural-language-understanding/src/main/java/com/ibm/watson/developer_cloud/natural_language_understanding/v1/model/Features.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ public EmotionOptions emotion() {
226226
* Gets the entities.
227227
*
228228
* Identifies people, cities, organizations, and other entities in the content. See [Entity types and
229-
* subtypes](/docs/services/natural-language-understanding/entity-types.html).
229+
* subtypes](https://cloud.ibm.com/docs/services/natural-language-understanding/entity-types.html).
230230
*
231231
* Supported languages: English, French, German, Italian, Japanese, Korean, Portuguese, Russian, Spanish, Swedish.
232232
* Arabic, Chinese, and Dutch custom models are also supported.
@@ -267,7 +267,7 @@ public MetadataOptions metadata() {
267267
*
268268
* Recognizes when two entities are related and identifies the type of relation. For example, an `awardedTo` relation
269269
* might connect the entities "Nobel Prize" and "Albert Einstein". See [Relation
270-
* types](/docs/services/natural-language-understanding/relations.html).
270+
* types](https://cloud.ibm.com/docs/services/natural-language-understanding/relations.html).
271271
*
272272
* Supported languages: Arabic, English, German, Japanese, Korean, Spanish. Chinese, Dutch, French, Italian, and
273273
* Portuguese custom models are also supported.

natural-language-understanding/src/main/java/com/ibm/watson/developer_cloud/natural_language_understanding/v1/model/RelationsOptions.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
/**
1818
* Recognizes when two entities are related and identifies the type of relation. For example, an `awardedTo` relation
1919
* might connect the entities "Nobel Prize" and "Albert Einstein". See [Relation
20-
* types](/docs/services/natural-language-understanding/relations.html).
20+
* types](https://cloud.ibm.com/docs/services/natural-language-understanding/relations.html).
2121
*
2222
* Supported languages: Arabic, English, German, Japanese, Korean, Spanish. Chinese, Dutch, French, Italian, and
2323
* Portuguese custom models are also supported.
@@ -79,7 +79,8 @@ public Builder newBuilder() {
7979
/**
8080
* Gets the model.
8181
*
82-
* Enter a [custom model](/docs/services/natural-language-understanding/customizing.html) ID to override the default
82+
* Enter a [custom model](https://cloud.ibm.com/docs/services/natural-language-understanding/customizing.html) ID
83+
* to override the default
8384
* model.
8485
*
8586
* @return the model

personality-insights/src/main/java/com/ibm/watson/developer_cloud/personality_insights/v3/PersonalityInsights.java

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@
3434
* personality characteristics. The service can infer consumption preferences based on the results of its analysis and,
3535
* for JSON content that is timestamped, can report temporal behavior.
3636
* * For information about the meaning of the models that the service uses to describe personality characteristics, see
37-
* [Personality models](/docs/services/personality-insights/models.html).
37+
* [Personality models](https://cloud.ibm.com/docs/services/personality-insights/models.html).
3838
* * For information about the meaning of the consumption preferences, see [Consumption
39-
* preferences](/docs/services/personality-insights/preferences.html).
39+
* preferences](https://cloud.ibm.com/docs/services/personality-insights/preferences.html).
4040
*
4141
* **Note:** Request logging is disabled for the Personality Insights service. Regardless of whether you set the
4242
* `X-Watson-Learning-Opt-Out` request header, the service does not log or retain data from requests and responses.
@@ -105,8 +105,8 @@ public PersonalityInsights(String versionDate, IamOptions iamOptions) {
105105
* English, Japanese, Korean, or Spanish. It can return its results in a variety of languages.
106106
*
107107
* **See also:**
108-
* * [Requesting a profile](/docs/services/personality-insights/input.html)
109-
* * [Providing sufficient input](/docs/services/personality-insights/input.html#sufficient)
108+
* * [Requesting a profile](https://cloud.ibm.com/docs/services/personality-insights/input.html)
109+
* * [Providing sufficient input](https://cloud.ibm.com/docs/services/personality-insights/input.html#sufficient)
110110
*
111111
* ### Content types
112112
*
@@ -119,7 +119,8 @@ public PersonalityInsights(String versionDate, IamOptions iamOptions) {
119119
* When specifying a content type of plain text or HTML, include the `charset` parameter to indicate the character
120120
* encoding of the input text; for example, `Content-Type: text/plain;charset=utf-8`.
121121
*
122-
* **See also:** [Specifying request and response formats](/docs/services/personality-insights/input.html#formats)
122+
* **See also:** [Specifying request and response formats](https://cloud.ibm
123+
* .com/docs/services/personality-insights/input.html#formats)
123124
*
124125
* ### Accept types
125126
*
@@ -128,8 +129,8 @@ public PersonalityInsights(String versionDate, IamOptions iamOptions) {
128129
* request optional column headers for CSV output.
129130
*
130131
* **See also:**
131-
* * [Understanding a JSON profile](/docs/services/personality-insights/output.html)
132-
* * [Understanding a CSV profile](/docs/services/personality-insights/output-csv.html).
132+
* * [Understanding a JSON profile](https://cloud.ibm.com/docs/services/personality-insights/output.html)
133+
* * [Understanding a CSV profile](https://cloud.ibm.com/docs/services/personality-insights/output-csv.html).
133134
*
134135
* @param profileOptions the {@link ProfileOptions} containing the options for the call
135136
* @return a {@link ServiceCall} with a response type of {@link Profile}
@@ -166,8 +167,8 @@ public ServiceCall<Profile> profile(ProfileOptions profileOptions) {
166167
* English, Japanese, Korean, or Spanish. It can return its results in a variety of languages.
167168
*
168169
* **See also:**
169-
* * [Requesting a profile](/docs/services/personality-insights/input.html)
170-
* * [Providing sufficient input](/docs/services/personality-insights/input.html#sufficient)
170+
* * [Requesting a profile](https://cloud.ibm.com/docs/services/personality-insights/input.html)
171+
* * [Providing sufficient input](https://cloud.ibm.com/docs/services/personality-insights/input.html#sufficient)
171172
*
172173
* ### Content types
173174
*
@@ -180,7 +181,8 @@ public ServiceCall<Profile> profile(ProfileOptions profileOptions) {
180181
* When specifying a content type of plain text or HTML, include the `charset` parameter to indicate the character
181182
* encoding of the input text; for example, `Content-Type: text/plain;charset=utf-8`.
182183
*
183-
* **See also:** [Specifying request and response formats](/docs/services/personality-insights/input.html#formats)
184+
* **See also:** [Specifying request and response formats](https://cloud.ibm
185+
* .com/docs/services/personality-insights/input.html#formats)
184186
*
185187
* ### Accept types
186188
*
@@ -189,8 +191,8 @@ public ServiceCall<Profile> profile(ProfileOptions profileOptions) {
189191
* request optional column headers for CSV output.
190192
*
191193
* **See also:**
192-
* * [Understanding a JSON profile](/docs/services/personality-insights/output.html)
193-
* * [Understanding a CSV profile](/docs/services/personality-insights/output-csv.html).
194+
* * [Understanding a JSON profile](https://cloud.ibm.com/docs/services/personality-insights/output.html)
195+
* * [Understanding a CSV profile](https://cloud.ibm.com/docs/services/personality-insights/output-csv.html).
194196
*
195197
* @param profileOptions the {@link ProfileOptions} containing the options for the call
196198
* @param includeHeaders the boolean saying whether or not to include headers in the response

personality-insights/src/main/java/com/ibm/watson/developer_cloud/personality_insights/v3/model/ProfileOptions.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,8 @@ public Builder newBuilder() {
236236
* Gets the content.
237237
*
238238
* A maximum of 20 MB of content to analyze, though the service requires much less text; for more information, see
239-
* [Providing sufficient input](/docs/services/personality-insights/input.html#sufficient). For JSON input, provide an
239+
* [Providing sufficient input](https://cloud.ibm.com/docs/services/personality-insights/input.html#sufficient).
240+
* For JSON input, provide an
240241
* object of type `Content`.
241242
*
242243
* @return the content
@@ -249,7 +250,8 @@ public Content content() {
249250
* Gets the body.
250251
*
251252
* A maximum of 20 MB of content to analyze, though the service requires much less text; for more information, see
252-
* [Providing sufficient input](/docs/services/personality-insights/input.html#sufficient). For JSON input, provide an
253+
* [Providing sufficient input](https://cloud.ibm.com/docs/services/personality-insights/input.html#sufficient).
254+
* For JSON input, provide an
253255
* object of type `Content`.
254256
*
255257
* @return the body

0 commit comments

Comments
 (0)