Enum OnlineAgentCategoryVisibility
- java.lang.Object
-
- java.lang.Enum<OnlineAgentCategoryVisibility>
-
- com.novomind.ecom.api.iagent.visibility.category.visibilities.OnlineAgentCategoryVisibility
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<OnlineAgentCategoryVisibility>
public enum OnlineAgentCategoryVisibility extends java.lang.Enum<OnlineAgentCategoryVisibility>
This class contains all possible visibilities for the tenants in the role online agent- Since:
- 10.0.146
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CURRENT
Show only the current tenant's categories, that the agent is logged in for.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OnlineAgentCategoryVisibility
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static OnlineAgentCategoryVisibility[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CURRENT
public static final OnlineAgentCategoryVisibility CURRENT
Show only the current tenant's categories, that the agent is logged in for.- Since:
- 11.0
-
-
Method Detail
-
values
public static OnlineAgentCategoryVisibility[] 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 (OnlineAgentCategoryVisibility c : OnlineAgentCategoryVisibility.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OnlineAgentCategoryVisibility 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
-
-