Package org.geotools.process.factory
Annotation Type DescribeResult
-
@Retention(RUNTIME) @Target(METHOD) public @interface DescribeResult
DescribeProcess information for publication by DEMProcessFactory.Annotation is used to mark a method for publication via DEMProcessFactory
- Author:
- Jody
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description String
description
The result descriptionString[]
meta
Extra metadata values for this parameter which will be added into theParameter
metadata map.String
name
The name of the result, defaults to "result"boolean
primary
If true, this is the primary result of the processClass<?>
type
The type of the result, needed only when there are multiple ones (since it cannot be desumed from the process Map return type
-
-
-
Element Detail
-
name
String name
The name of the result, defaults to "result"- Default:
- "result"
-
-
-
type
Class<?> type
The type of the result, needed only when there are multiple ones (since it cannot be desumed from the process Map return type- Default:
- java.lang.Object.class
-
-
-
description
String description
The result description- Default:
- "[undescribed]"
-
-