Enum ExcelTemplateConstants.UtilitySheet
- java.lang.Object
-
- java.lang.Enum<ExcelTemplateConstants.UtilitySheet>
-
- com.hybris.backoffice.excel.template.ExcelTemplateConstants.UtilitySheet
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ExcelTemplateConstants.UtilitySheet>
- Enclosing class:
- ExcelTemplateConstants
public static enum ExcelTemplateConstants.UtilitySheet extends java.lang.Enum<ExcelTemplateConstants.UtilitySheet>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLASSIFICATION_TYPE_SYSTEMHEADER_PROMPTPKTYPE_SYSTEMTYPE_TEMPLATE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetSheetName()static booleanisUtilitySheet(java.util.Collection<ExcelTemplateConstants.UtilitySheet> utilitySheets, java.lang.String sheetName)static ExcelTemplateConstants.UtilitySheetvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ExcelTemplateConstants.UtilitySheet[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CLASSIFICATION_TYPE_SYSTEM
public static final ExcelTemplateConstants.UtilitySheet CLASSIFICATION_TYPE_SYSTEM
-
HEADER_PROMPT
public static final ExcelTemplateConstants.UtilitySheet HEADER_PROMPT
-
PK
public static final ExcelTemplateConstants.UtilitySheet PK
-
TYPE_TEMPLATE
public static final ExcelTemplateConstants.UtilitySheet TYPE_TEMPLATE
-
TYPE_SYSTEM
public static final ExcelTemplateConstants.UtilitySheet TYPE_SYSTEM
-
-
Method Detail
-
values
public static ExcelTemplateConstants.UtilitySheet[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ExcelTemplateConstants.UtilitySheet c : ExcelTemplateConstants.UtilitySheet.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExcelTemplateConstants.UtilitySheet valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getSheetName
public java.lang.String getSheetName()
-
isUtilitySheet
public static boolean isUtilitySheet(java.util.Collection<ExcelTemplateConstants.UtilitySheet> utilitySheets, java.lang.String sheetName)
-
-