Annotation Type XSDMapping
- 
 @Target({FIELD,TYPE}) @Retention(RUNTIME) public @interface XSDMapping Use this annotation on descendants of FeatureWrapper.It can indicate how fields map to objects in a Feature but describing their name including name and namespace. At class-level you can set namespace and separator to serve as defaults for the fields within the class. At field-level you can specify the local name and the namespace and separator (the last two will be inherited from a class-level XSDMapping if one is present). 
- 
- 
Optional Element SummaryOptional Elements Modifier and Type Optional Element Description StringlocalThe XML Local name that the field corresponds to.StringnamespaceThe XML namespace the field corresponds to.StringpathYou can use path to set an XPATH-style expression to indicate where a particular field should be found in a complex feature.StringseparatorThe separator used in the full XML name.
 
- 
- 
- 
Element Detail- 
localString local The XML Local name that the field corresponds to.- Default:
- ""
 
 
- 
 - 
- 
namespaceString namespace The XML namespace the field corresponds to. Define at class-level to set a default namespace for all contained fields.- Default:
- ""
 
 
- 
 - 
- 
separatorString separator The separator used in the full XML name. Define at class-level to set a default separator for all contained fields.- Default:
- ""
 
 
- 
 - 
- 
pathString path You can use path to set an XPATH-style expression to indicate where a particular field should be found in a complex feature.- Default:
- ""
 
 
- 
 
-