Package microsoft.dynamics.crm.enums
Enum OrganizationType
- java.lang.Object
-
- java.lang.Enum<OrganizationType>
-
- microsoft.dynamics.crm.enums.OrganizationType
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<OrganizationType>
public enum OrganizationType extends Enum<OrganizationType> implements com.github.davidmoten.odata.client.Enum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BACK_ENDCUSTOMERCUSTOMER_FREE_TESTCUSTOMER_PREVIEWCUSTOMER_TESTDEFAULTDEVELOPEREMAIL_TRIALMONITORINGMSFT_INVESTIGATIONPLACEHOLDERSECONDARYSUPPORTTEAMSTEST_DRIVETRIAL
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static OrganizationTypevalueOf(String name)Returns the enum constant of this type with the specified name.static OrganizationType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CUSTOMER
public static final OrganizationType CUSTOMER
-
MONITORING
public static final OrganizationType MONITORING
-
SUPPORT
public static final OrganizationType SUPPORT
-
BACK_END
public static final OrganizationType BACK_END
-
SECONDARY
public static final OrganizationType SECONDARY
-
CUSTOMER_TEST
public static final OrganizationType CUSTOMER_TEST
-
CUSTOMER_FREE_TEST
public static final OrganizationType CUSTOMER_FREE_TEST
-
CUSTOMER_PREVIEW
public static final OrganizationType CUSTOMER_PREVIEW
-
PLACEHOLDER
public static final OrganizationType PLACEHOLDER
-
TEST_DRIVE
public static final OrganizationType TEST_DRIVE
-
MSFT_INVESTIGATION
public static final OrganizationType MSFT_INVESTIGATION
-
EMAIL_TRIAL
public static final OrganizationType EMAIL_TRIAL
-
DEFAULT
public static final OrganizationType DEFAULT
-
DEVELOPER
public static final OrganizationType DEVELOPER
-
TRIAL
public static final OrganizationType TRIAL
-
TEAMS
public static final OrganizationType TEAMS
-
-
Method Detail
-
values
public static OrganizationType[] 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 (OrganizationType c : OrganizationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OrganizationType valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
enumName
public String enumName()
- Specified by:
enumNamein interfacecom.github.davidmoten.odata.client.Enum
-
enumValue
public String enumValue()
- Specified by:
enumValuein interfacecom.github.davidmoten.odata.client.Enum
-
-