public static enum CmsSystemConfiguration.UserSessionMode extends java.lang.Enum<CmsSystemConfiguration.UserSessionMode>
Enum Constant and Description |
---|
single
Only a single session per user is allowed.
|
standard
Any number of sessions for a user are allowed.
|
Modifier and Type | Method and Description |
---|---|
static CmsSystemConfiguration.UserSessionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CmsSystemConfiguration.UserSessionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CmsSystemConfiguration.UserSessionMode single
public static final CmsSystemConfiguration.UserSessionMode standard
public static CmsSystemConfiguration.UserSessionMode[] values()
for (CmsSystemConfiguration.UserSessionMode c : CmsSystemConfiguration.UserSessionMode.values()) System.out.println(c);
public static CmsSystemConfiguration.UserSessionMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null