public enum CustomUiContext extends Enum<CustomUiContext>
| Enum Constant and Description |
|---|
manager
if manager is using app
|
user
if user is using app
|
| Modifier and Type | Method and Description |
|---|---|
static CustomUiContext |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CustomUiContext[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomUiContext user
public static final CustomUiContext manager
public static CustomUiContext[] values()
for (CustomUiContext c : CustomUiContext.values()) System.out.println(c);
public static CustomUiContext valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016 Internet2. All rights reserved.