Package com.hybris.backoffice.excel.data
Interface ExcelAttribute
-
- All Known Implementing Classes:
ExcelAttributeDescriptorAttribute,ExcelClassificationAttribute
public interface ExcelAttributeRepresents selected attribute used by excel decorators.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetIsoCode()java.lang.StringgetName()java.lang.StringgetQualifier()java.lang.StringgetType()booleanisLocalized()booleanisMandatory()booleanisMultiValue()
-
-
-
Method Detail
-
getName
java.lang.String getName()
- Returns:
- name of attribute
-
isLocalized
boolean isLocalized()
- Returns:
- information whether attribute is localized
-
getIsoCode
java.lang.String getIsoCode()
- Returns:
- isoCode of attribute
-
getQualifier
java.lang.String getQualifier()
- Returns:
- qualifier of attribute
-
isMandatory
boolean isMandatory()
- Returns:
- information whether attribute is mandatory
-
getType
java.lang.String getType()
- Returns:
- type of attribute. For example, 'java.lang.String', 'java.util.Date', 'Product'
-
isMultiValue
boolean isMultiValue()
- Returns:
- indicates whether attribute is multiValue type
-
-