public enum DeveloperEditionEntityType extends Enum<DeveloperEditionEntityType>
Enum Constant and Description |
---|
ENTERPRISE
Represents the entity type enterprise.
|
USER
Represents the entity type user.
|
Modifier and Type | Method and Description |
---|---|
String |
toString()
To get the string value for the enum type.
|
static DeveloperEditionEntityType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeveloperEditionEntityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeveloperEditionEntityType ENTERPRISE
public static final DeveloperEditionEntityType USER
public static DeveloperEditionEntityType[] values()
for (DeveloperEditionEntityType c : DeveloperEditionEntityType.values()) System.out.println(c);
public static DeveloperEditionEntityType 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<DeveloperEditionEntityType>