Class NetworkIOConfig
- java.lang.Object
-
- oracle.spatial.network.lod.config.NetworkIOConfig
-
public class NetworkIOConfig extends java.lang.Object
Configuration for network IO.- Since:
- 12.1
-
-
Constructor Summary
Constructors Constructor Description NetworkIOConfig()
NetworkIOConfig(org.w3c.dom.Element ioElem)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object
clone()
int
getBatchSize()
org.w3c.dom.Element[]
getCachingPolicies()
double
getGeometryTolerance()
org.w3c.dom.Element
getNetworkIOElement()
Returns the networkIO element that was used initially to construct this NetworkIOConfig object.org.w3c.dom.Element
getPartitionBlobTranslator()
org.w3c.dom.Element[]
getUserDataIOs()
boolean
isReadFromBlob()
void
setBatchSize(int batchSize)
void
setCachingPolicies(java.lang.String cachingPoliciesXml)
void
setCachingPolicies(org.w3c.dom.Element[] cachingPolicies)
void
setGeometryTolerance(double tolerance)
void
setPartitionBlobTranslator(java.lang.String partitionBlobTranslatorXmlElement)
void
setPartitionBlobTranslator(org.w3c.dom.Element partitionBlobTranslator)
void
setReadFromBlob(boolean readFromBlob)
void
setUserDataIOs(java.lang.String userDataIOsXml)
void
setUserDataIOs(org.w3c.dom.Element[] userDataIOs)
void
updateNetworkIOElement()
Update the networkIO element to reflect the current status of this object.
-
-
-
Constructor Detail
-
NetworkIOConfig
public NetworkIOConfig()
-
NetworkIOConfig
public NetworkIOConfig(org.w3c.dom.Element ioElem) throws LODConfigException
- Throws:
LODConfigException
-
-
Method Detail
-
setBatchSize
public void setBatchSize(int batchSize)
-
getBatchSize
public int getBatchSize()
-
setGeometryTolerance
public void setGeometryTolerance(double tolerance)
-
getGeometryTolerance
public double getGeometryTolerance()
-
setReadFromBlob
public void setReadFromBlob(boolean readFromBlob)
-
isReadFromBlob
public boolean isReadFromBlob()
-
setPartitionBlobTranslator
public void setPartitionBlobTranslator(java.lang.String partitionBlobTranslatorXmlElement)
-
setPartitionBlobTranslator
public void setPartitionBlobTranslator(org.w3c.dom.Element partitionBlobTranslator)
-
getPartitionBlobTranslator
public org.w3c.dom.Element getPartitionBlobTranslator()
-
setCachingPolicies
public void setCachingPolicies(java.lang.String cachingPoliciesXml)
-
setCachingPolicies
public void setCachingPolicies(org.w3c.dom.Element[] cachingPolicies)
-
getCachingPolicies
public org.w3c.dom.Element[] getCachingPolicies()
-
setUserDataIOs
public void setUserDataIOs(java.lang.String userDataIOsXml)
-
setUserDataIOs
public void setUserDataIOs(org.w3c.dom.Element[] userDataIOs)
-
getUserDataIOs
public org.w3c.dom.Element[] getUserDataIOs()
-
getNetworkIOElement
public org.w3c.dom.Element getNetworkIOElement()
Returns the networkIO element that was used initially to construct this NetworkIOConfig object. The returned element may not reflect the current state of this NetworkIOConfig object, because the properties of the current object could have been changed programmatically after it was initialized.- Returns:
-
updateNetworkIOElement
public void updateNetworkIOElement()
Update the networkIO element to reflect the current status of this object.
-
clone
public java.lang.Object clone()
- Overrides:
clone
in classjava.lang.Object
-
-