Enum OrganizationEmailCustomizationFields
- java.lang.Object
-
- java.lang.Enum<OrganizationEmailCustomizationFields>
-
- com.blackberry.workspaces.sdk.api.enums.OrganizationEmailCustomizationFields
-
- All Implemented Interfaces:
Serializable
,Comparable<OrganizationEmailCustomizationFields>
public enum OrganizationEmailCustomizationFields extends Enum<OrganizationEmailCustomizationFields>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CUSTOMIZE_TEXT
Welcome email customize textDEFAULT_CUSTOMIZE_TEXT
Welcome email default customize textDEFAULT_SECONDARY_LANGUAGE_CUSTOMIZE_TEXT
Welcome email customize text secondary languageENABLE_ANDROID_APP_DOWNLOAD_LINK
Enable Android app download linkENABLE_GET_STARTED_VIDEO
Enable "Get started" videoENABLE_IOS_APP_DOWNLOAD_LINK
Enable IOS app download linkENABLE_PC_AND_MAC_APP_DOWNLOAD_LINK
Enable PC/Mac app download linkSECONDARY_LANGUAGE_CUSTOMIZE_TEXT
Welcome email customize text secondary language
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OrganizationEmailCustomizationFields
valueOf(String name)
Returns the enum constant of this type with the specified name.static OrganizationEmailCustomizationFields[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CUSTOMIZE_TEXT
public static final OrganizationEmailCustomizationFields CUSTOMIZE_TEXT
Welcome email customize text
-
DEFAULT_CUSTOMIZE_TEXT
public static final OrganizationEmailCustomizationFields DEFAULT_CUSTOMIZE_TEXT
Welcome email default customize text
-
SECONDARY_LANGUAGE_CUSTOMIZE_TEXT
public static final OrganizationEmailCustomizationFields SECONDARY_LANGUAGE_CUSTOMIZE_TEXT
Welcome email customize text secondary language
-
DEFAULT_SECONDARY_LANGUAGE_CUSTOMIZE_TEXT
public static final OrganizationEmailCustomizationFields DEFAULT_SECONDARY_LANGUAGE_CUSTOMIZE_TEXT
Welcome email customize text secondary language
-
ENABLE_GET_STARTED_VIDEO
public static final OrganizationEmailCustomizationFields ENABLE_GET_STARTED_VIDEO
Enable "Get started" video
-
ENABLE_PC_AND_MAC_APP_DOWNLOAD_LINK
public static final OrganizationEmailCustomizationFields ENABLE_PC_AND_MAC_APP_DOWNLOAD_LINK
Enable PC/Mac app download link
-
ENABLE_IOS_APP_DOWNLOAD_LINK
public static final OrganizationEmailCustomizationFields ENABLE_IOS_APP_DOWNLOAD_LINK
Enable IOS app download link
-
ENABLE_ANDROID_APP_DOWNLOAD_LINK
public static final OrganizationEmailCustomizationFields ENABLE_ANDROID_APP_DOWNLOAD_LINK
Enable Android app download link
-
-
Method Detail
-
values
public static OrganizationEmailCustomizationFields[] 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 (OrganizationEmailCustomizationFields c : OrganizationEmailCustomizationFields.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OrganizationEmailCustomizationFields 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
-
-