Enum TextModuleFirstLevelGroup.Classification
- java.lang.Object
-
- java.lang.Enum<TextModuleFirstLevelGroup.Classification>
-
- com.novomind.ecom.api.iagent.model.TextModuleFirstLevelGroup.Classification
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TextModuleFirstLevelGroup.Classification>
- Enclosing interface:
- TextModuleFirstLevelGroup
public static enum TextModuleFirstLevelGroup.Classification extends java.lang.Enum<TextModuleFirstLevelGroup.Classification>
Represents the classification of a textmodule first level group- Since:
- 10.0.206
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BODY
body classificationENDING
ending classificationGREETING
greeting classificationNO_CLASSIFICATION
no specific classification
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TextModuleFirstLevelGroup.Classification
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TextModuleFirstLevelGroup.Classification[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NO_CLASSIFICATION
public static final TextModuleFirstLevelGroup.Classification NO_CLASSIFICATION
no specific classification- Since:
- 10.0.206
-
GREETING
public static final TextModuleFirstLevelGroup.Classification GREETING
greeting classification- Since:
- 10.0.206
-
BODY
public static final TextModuleFirstLevelGroup.Classification BODY
body classification- Since:
- 10.0.206
-
ENDING
public static final TextModuleFirstLevelGroup.Classification ENDING
ending classification- Since:
- 10.0.206
-
-
Method Detail
-
values
public static TextModuleFirstLevelGroup.Classification[] 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 (TextModuleFirstLevelGroup.Classification c : TextModuleFirstLevelGroup.Classification.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TextModuleFirstLevelGroup.Classification 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
-
-