Class XMLField
- java.lang.Object
-
- com.orchestranetworks.addon.dex.mapping.XMLField
-
-
Constructor Summary
Constructors Constructor Description XMLField(java.lang.String xmlPath)Used to create a XML field with specified path.XMLField(java.lang.String xmlPath, FieldAttribute fieldAttribute)Used to create an XML field with the specified path andFieldAttributeenumeration.XMLField(java.lang.String xmlPath, java.lang.String name, java.lang.String label)Used to create an XML field with the specified path, name and label.XMLField(java.lang.String xmlPath, java.lang.String name, java.lang.String label, int index)Used to create an XML field with the specified path, name, label and index.XMLField(java.lang.String xmlPath, java.lang.String name, java.lang.String label, int index, FieldAttribute fieldAttribute)Used to create an XML field with the specified path, name, label, index andFieldAttributeenumeration.XMLField(java.lang.String xmlPath, java.lang.String name, java.lang.String label, FieldAttribute fieldAttribute)Used to create an XML field with the specified path, name, label andFieldAttributeenumeration.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)FieldAttributegetFieldAttribute()Returns the specifiedFieldAttributefor this XML field.intgetIndex()Returns the specified field index.java.lang.StringgetLabel()Returns the specified field label.java.lang.StringgetName()Returns the specified field name.java.lang.StringgetXMLPath()Returns the specified field path.inthashCode()voidsetLabel(java.lang.String label)Sets a label to this field.voidsetName(java.lang.String name)Sets a name to this field.
-
-
-
Constructor Detail
-
XMLField
public XMLField(java.lang.String xmlPath) throws DataExchangeExceptionUsed to create a XML field with specified path. If field path is null or empty, an exception will be thrown.- Throws:
DataExchangeException
-
XMLField
public XMLField(java.lang.String xmlPath, FieldAttribute fieldAttribute) throws DataExchangeExceptionUsed to create an XML field with the specified path andFieldAttributeenumeration. If theFieldAttributeenumeration is not aNO_SOURCE_FIELD, the field path must not be null or empty. Otherwise, an exception will be thrown.- Throws:
DataExchangeException- Since:
- 2.4.0
-
XMLField
public XMLField(java.lang.String xmlPath, java.lang.String name, java.lang.String label) throws DataExchangeExceptionUsed to create an XML field with the specified path, name and label. If the field path is null or empty, an exception will be thrown.- Throws:
DataExchangeException
-
XMLField
public XMLField(java.lang.String xmlPath, java.lang.String name, java.lang.String label, FieldAttribute fieldAttribute) throws DataExchangeExceptionUsed to create an XML field with the specified path, name, label andFieldAttributeenumeration. If theFieldAttributeenumeration is not aNO_SOURCE_FIELD, the field path must not be null or empty. Otherwise, an exception will be thrown.- Throws:
DataExchangeException- Since:
- 2.4.0
-
XMLField
public XMLField(java.lang.String xmlPath, java.lang.String name, java.lang.String label, int index) throws DataExchangeExceptionUsed to create an XML field with the specified path, name, label and index. If the field path is null or empty, an exception will be thrown.- Throws:
DataExchangeException
-
XMLField
public XMLField(java.lang.String xmlPath, java.lang.String name, java.lang.String label, int index, FieldAttribute fieldAttribute) throws DataExchangeExceptionUsed to create an XML field with the specified path, name, label, index andFieldAttributeenumeration. If theFieldAttributeenumeration is not aNO_SOURCE_FIELD, the field path must not be null or empty. Otherwise, an exception will be thrown.- Throws:
DataExchangeException- Since:
- 2.4.0
-
-
Method Detail
-
getName
public java.lang.String getName()
Returns the specified field name.
-
setName
public void setName(java.lang.String name)
Sets a name to this field.
-
getLabel
public java.lang.String getLabel()
Returns the specified field label.
-
setLabel
public void setLabel(java.lang.String label)
Sets a label to this field.
-
getXMLPath
public java.lang.String getXMLPath()
Returns the specified field path.
-
getIndex
public int getIndex()
Returns the specified field index.
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
getFieldAttribute
public final FieldAttribute getFieldAttribute()
Returns the specifiedFieldAttributefor this XML field.- Since:
- 2.4.0
-
-