Package net.opengis.wfs
Interface NativeType
-
- All Superinterfaces:
EObject,Notifier
- All Known Implementing Classes:
NativeTypeImpl
public interface NativeType extends EObjectA representation of the model object 'Native Type'.The following features are supported:
- See Also:
WfsPackage.getNativeType()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetValue()Arbitrary text content within the native element.StringgetVendorId()Returns the value of the 'Vendor Id' attribute.booleanisSafeToIgnore()Returns the value of the 'Safe To Ignore' attribute.booleanisSetSafeToIgnore()Returns whether the value of the 'Safe To Ignore' attribute is set.voidsetSafeToIgnore(boolean value)Sets the value of the 'Safe To Ignore' attribute.voidsetValue(String value)Sets the value of the 'Value' attribute.voidsetVendorId(String value)Sets the value of the 'Vendor Id' attribute.voidunsetSafeToIgnore()Unsets the value of the 'Safe To Ignore' attribute.
-
-
-
Method Detail
-
isSafeToIgnore
boolean isSafeToIgnore()
Returns the value of the 'Safe To Ignore' attribute. In the event that a Web Feature Service does not recognize the vendorId or does not recognize the vendor specific command, the safeToIgnore attribute is used to indicate whether the exception can be safely ignored. A value of TRUE means that the Web Feature Service may ignore the command. A value of FALSE means that a Web Feature Service cannot ignore the command and an exception should be raised if a problem is encountered.- Returns:
- the value of the 'Safe To Ignore' attribute.
- See Also:
isSetSafeToIgnore(),unsetSafeToIgnore(),setSafeToIgnore(boolean),WfsPackage.getNativeType_SafeToIgnore()
-
setSafeToIgnore
void setSafeToIgnore(boolean value)
Sets the value of the 'Safe To Ignore' attribute.- Parameters:
value- the new value of the 'Safe To Ignore' attribute.- See Also:
isSetSafeToIgnore(),unsetSafeToIgnore(),isSafeToIgnore()
-
unsetSafeToIgnore
void unsetSafeToIgnore()
Unsets the value of the 'Safe To Ignore' attribute.
-
isSetSafeToIgnore
boolean isSetSafeToIgnore()
Returns whether the value of the 'Safe To Ignore' attribute is set.- Returns:
- whether the value of the 'Safe To Ignore' attribute is set.
- See Also:
unsetSafeToIgnore(),isSafeToIgnore(),setSafeToIgnore(boolean)
-
getVendorId
String getVendorId()
Returns the value of the 'Vendor Id' attribute. The vendorId attribute is used to specify the name of vendor who's vendor specific command the client application wishes to execute.- Returns:
- the value of the 'Vendor Id' attribute.
- See Also:
setVendorId(String),WfsPackage.getNativeType_VendorId()
-
setVendorId
void setVendorId(String value)
Sets the value of the 'Vendor Id' attribute.- Parameters:
value- the new value of the 'Vendor Id' attribute.- See Also:
getVendorId()
-
getValue
String getValue()
Arbitrary text content within the native element.
-
setValue
void setValue(String value)
Sets the value of the 'Value' attribute.- Parameters:
value- the new value of the 'Value' attribute.- See Also:
getValue()
-
-