Skip to content

Commit

Permalink
updating javadoc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
kowatsch committed Aug 13, 2018
1 parent 5c0f4c0 commit 121371b
Show file tree
Hide file tree
Showing 9 changed files with 236 additions and 210 deletions.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,9 +1,28 @@
package org.heigit.bigspatialdata.ohsome.ohsomeApi.output.dataAggregationResponse;

/**
* Interface for most Response classes.
*
* @see {@link org.heigit.bigspatialdata.ohsome.ohsomeApi.output.dataAggregationResponse.DefaultAggregationResponse
* DefaultAggregationResponse}
* @see {@link org.heigit.bigspatialdata.ohsome.ohsomeApi.output.dataAggregationResponse.elements.ShareResponse
* ShareResponse}
* @see {@link org.heigit.bigspatialdata.ohsome.ohsomeApi.output.dataAggregationResponse.groupByResponse.GroupByResponse
* GroupByResponse}
* @see {@link org.heigit.bigspatialdata.ohsome.ohsomeApi.output.dataAggregationResponse.groupByResponse.RatioGroupByBoundaryResponse
* RatioGroupByBoundaryResponse}
* @see {@link org.heigit.bigspatialdata.ohsome.ohsomeApi.output.dataAggregationResponse.groupByResponse.ShareGroupByBoundaryResponse
* ShareGroupByBoundaryResponse}
* @see {@link org.heigit.bigspatialdata.ohsome.ohsomeApi.output.dataAggregationResponse.RatioResponse
* RatioResponse}
*
*/
public interface Response {

public Attribution getAttribution();

public String getApiVersion();

public Metadata getMetadata();

}
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
package org.heigit.bigspatialdata.ohsome.ohsomeApi.output.dataAggregationResponse;

/** Interface used for the Result objects. */
/**
* Interface for two Result objects.
*
* @see {@link org.heigit.bigspatialdata.ohsome.ohsomeApi.output.dataAggregationResponse.elements.ElementsResult
* ElementsResult}
* @see {@link org.heigit.bigspatialdata.ohsome.ohsomeApi.output.dataAggregationResponse.RatioResult
* RatioResult}
*/
public interface Result {

public double getValue();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
* {@link org.heigit.bigspatialdata.ohsome.ohsomeApi.output.dataAggregationResponse.Metadata
* Metadata}, the requested
* {@link org.heigit.bigspatialdata.ohsome.ohsomeApi.output.dataAggregationResponse.groupByResponse.GroupByResult
* GroupByResult} and an identifier of the object plus the corresponding
* {@link org.heigit.bigspatialdata.ohsome.ohsomeApi.output.dataAggregationResponse.elements.ElementsResult
* ElementsResult} objects.
* GroupByResult} for a JSON response and an identifier of the object. If the output format is GeoJSON, the response
* includes a {@link org.geojson.Feature Feature} array, which holds the respective objects with
* their timestamp-value pairs.
*/
@JsonInclude(Include.NON_NULL)
public class GroupByResponse implements Response {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
* {@link org.heigit.bigspatialdata.ohsome.ohsomeApi.output.dataAggregationResponse.Metadata
* Metadata} object, the requested
* {@link org.heigit.bigspatialdata.ohsome.ohsomeApi.output.dataAggregationResponse.groupByResponse.RatioGroupByResult
* RatioGroupByResult} and an identifier of the object plus the corresponding
* {@link org.heigit.bigspatialdata.ohsome.ohsomeApi.output.dataAggregationResponse.RatioResult
* RatioResult} objects.
* RatioGroupByResult} for a JSON response and an identifier of the object. If the output format is
* GeoJSON, the response includes a {@link org.geojson.Feature Feature} array, which holds the
* respective objects with their timestamp-value pairs.
*/
@JsonInclude(Include.NON_NULL)
public class RatioGroupByBoundaryResponse implements Response {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
* {@link org.heigit.bigspatialdata.ohsome.ohsomeApi.output.dataAggregationResponse.Metadata
* Metadata} object, the requested
* {@link org.heigit.bigspatialdata.ohsome.ohsomeApi.output.dataAggregationResponse.groupByResponse.ShareGroupByResult
* ShareGroupByResult} and an identifier of the object plus the corresponding
* {@link org.heigit.bigspatialdata.ohsome.ohsomeApi.output.dataAggregationResponse.elements.ShareResult
* ShareResult} objects.
* ShareGroupByResult} for a JSON response and an identifier of the object. If the output format is
* GeoJSON, the response includes a {@link org.geojson.Feature Feature} array, which holds the
* respective objects with their timestamp-value pairs.
*/
@JsonInclude(Include.NON_NULL)
public class ShareGroupByBoundaryResponse implements Response {
Expand Down

0 comments on commit 121371b

Please sign in to comment.