Enum InfoTabBehavior.SelectionType
- java.lang.Object
-
- java.lang.Enum<InfoTabBehavior.SelectionType>
-
- com.novomind.ecom.api.iagent.frontend.tab.InfoTabBehavior.SelectionType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<InfoTabBehavior.SelectionType>
- Enclosing class:
- InfoTabBehavior
public static enum InfoTabBehavior.SelectionType extends java.lang.Enum<InfoTabBehavior.SelectionType>
- Since:
- 10.0.28
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NONE
default - no special behaviour on ticket selectionSELECTED
the mail info tab will be toggled automatically on ticket selectionSELECTED_FULLSCREEN
the mail info tab will be toggled automatically and switched to fullscreen mode on ticket selection
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static InfoTabBehavior.SelectionType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static InfoTabBehavior.SelectionType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final InfoTabBehavior.SelectionType NONE
default - no special behaviour on ticket selection- Since:
- 10.0.28
-
SELECTED
public static final InfoTabBehavior.SelectionType SELECTED
the mail info tab will be toggled automatically on ticket selection- Since:
- 10.0.28
-
SELECTED_FULLSCREEN
public static final InfoTabBehavior.SelectionType SELECTED_FULLSCREEN
the mail info tab will be toggled automatically and switched to fullscreen mode on ticket selection- Since:
- 10.0.28
-
-
Method Detail
-
values
public static InfoTabBehavior.SelectionType[] 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 (InfoTabBehavior.SelectionType c : InfoTabBehavior.SelectionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InfoTabBehavior.SelectionType 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
-
-