Class SpreadsheetField
- java.lang.Object
-
- com.orchestranetworks.addon.dex.mapping.SpreadsheetField
-
-
Constructor Summary
Constructors Constructor Description SpreadsheetField(int index)Used to create a spreadsheet field with specified index.SpreadsheetField(int index, FieldAttribute fieldAttribute)Used to create a spreadsheet field with the specified index andFieldAttributeenumeration.SpreadsheetField(int index, java.lang.String name, java.lang.String label)Used to create a spreadsheet field with the specified index, name and label.SpreadsheetField(int index, java.lang.String name, java.lang.String label, FieldAttribute fieldAttribute)Used to create a spreadsheet field with the specified index, 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 spreadsheet field.intgetIndex()Returns the specified field index.java.lang.StringgetLabel()Returns the specified field label.java.lang.StringgetName()Returns the specified field name.inthashCode()
-
-
-
Constructor Detail
-
SpreadsheetField
public SpreadsheetField(int index) throws DataExchangeExceptionUsed to create a spreadsheet field with specified index. Index starts with zero. If index less than zero, an exception will be thrown.- Throws:
DataExchangeException
-
SpreadsheetField
public SpreadsheetField(int index, FieldAttribute fieldAttribute) throws DataExchangeExceptionUsed to create a spreadsheet field with the specified index andFieldAttributeenumeration. If theFieldAttributeenumeration is not aNO_SOURCE_FIELD, the index must be equal to or greater than zero. Otherwise, an exception will be thrown.- Throws:
DataExchangeException- Since:
- 2.4.0
-
SpreadsheetField
public SpreadsheetField(int index, java.lang.String name, java.lang.String label) throws DataExchangeExceptionUsed to create a spreadsheet field with the specified index, name and label.- Throws:
DataExchangeException
-
SpreadsheetField
public SpreadsheetField(int index, java.lang.String name, java.lang.String label, FieldAttribute fieldAttribute) throws DataExchangeExceptionUsed to create a spreadsheet field with the specified index, name, label andFieldAttributeenumeration. If theFieldAttributeenumeration is not aNO_SOURCE_FIELD, the index must be equal to or greater than zero. 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.
-
getLabel
public java.lang.String getLabel()
Returns the specified field label.
-
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 spreadsheet field.- Since:
- 2.4.0
-
-