public enum DashboardType extends Enum<DashboardType>
| Enum Constant and Description |
|---|
LoggedInUser
Enumeration : LoggedInUser
|
MyTeamUser
Enumeration : MyTeamUser
|
SpecifiedUser
Enumeration : SpecifiedUser
|
| Modifier and Type | Field and Description |
|---|---|
static Map<String,String> |
valuesToEnums |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static DashboardType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DashboardType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DashboardType SpecifiedUser
public static final DashboardType LoggedInUser
public static final DashboardType MyTeamUser
public static DashboardType[] values()
for (DashboardType c : DashboardType.values()) System.out.println(c);
public static DashboardType 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 nullpublic String toString()
toString in class Enum<DashboardType>Copyright © 2015. All Rights Reserved.