Class FeatureAttributeDescriptor
- java.lang.Object
-
- oracle.spatial.network.nfe.workspace.FeatureAttributeDescriptor
-
public class FeatureAttributeDescriptor extends java.lang.Object
Describes a feature attribute descriptor.
-
-
Constructor Summary
Constructors Constructor Description FeatureAttributeDescriptor()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
java.lang.String
getAttributeChildValue()
Returns the attribute value in the child workspace.java.lang.String
getAttributeName()
Returns the attribute name.java.lang.String
getAttributeParentValue()
Returns the attribute value in the parent workspace.ConflictDescriptor
getConflictDescriptor()
Returns the attribute conflict descriptor if any conflict is related to this attribute, null otherwise.FeatureDescriptor
getFeatureDescriptor()
Returns the feature descriptor.int
hashCode()
void
setAttributeChildValue(java.lang.String attributeChildValue)
Sets the attribute value in the child workspace.void
setAttributeName(java.lang.String attributeName)
Sets the attribute name.void
setAttributeParentValue(java.lang.String attributeParentValue)
Sets the attribute value in the parent workspace.void
setConflictDescriptor(ConflictDescriptor conflictDescriptor)
Sets the attribute conflict descriptor.void
setFeatureDescriptor(FeatureDescriptor featureDescriptor)
Sets the feature descriptor.
-
-
-
Method Detail
-
getAttributeName
public java.lang.String getAttributeName()
Returns the attribute name.- Returns:
- attribute name
-
setAttributeName
public void setAttributeName(java.lang.String attributeName)
Sets the attribute name.- Parameters:
attributeName
- attribute name
-
getAttributeChildValue
public java.lang.String getAttributeChildValue()
Returns the attribute value in the child workspace.- Returns:
- attribute value in the child workspace
-
setAttributeChildValue
public void setAttributeChildValue(java.lang.String attributeChildValue)
Sets the attribute value in the child workspace.- Parameters:
attributeChildValue
- attribute value in the child workspace
-
getAttributeParentValue
public java.lang.String getAttributeParentValue()
Returns the attribute value in the parent workspace.- Returns:
- attribute value in the parent workspace
-
setAttributeParentValue
public void setAttributeParentValue(java.lang.String attributeParentValue)
Sets the attribute value in the parent workspace.- Parameters:
attributeParentValue
- attribute value in the parent workspace
-
getConflictDescriptor
public ConflictDescriptor getConflictDescriptor()
Returns the attribute conflict descriptor if any conflict is related to this attribute, null otherwise.- Returns:
- attribute conflict descriptor
-
setConflictDescriptor
public void setConflictDescriptor(ConflictDescriptor conflictDescriptor)
Sets the attribute conflict descriptor.- Parameters:
conflictDescriptor
- attribute conflict descriptor.
-
getFeatureDescriptor
public FeatureDescriptor getFeatureDescriptor()
Returns the feature descriptor.- Returns:
- feature descriptor.
-
setFeatureDescriptor
public void setFeatureDescriptor(FeatureDescriptor featureDescriptor)
Sets the feature descriptor.- Parameters:
featureDescriptor
- feature descriptor
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
-