Package odata.msgraph.client.enums
Enum NotificationTemplateBrandingOptions
- java.lang.Object
-
- java.lang.Enum<NotificationTemplateBrandingOptions>
-
- odata.msgraph.client.enums.NotificationTemplateBrandingOptions
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<NotificationTemplateBrandingOptions>
public enum NotificationTemplateBrandingOptions extends Enum<NotificationTemplateBrandingOptions> implements com.github.davidmoten.odata.client.Enum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INCLUDE_COMPANY_LOGOINCLUDE_COMPANY_NAMEINCLUDE_COMPANY_PORTAL_LINKINCLUDE_CONTACT_INFORMATIONINCLUDE_DEVICE_DETAILSNONEUNKNOWN_FUTURE_VALUE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static NotificationTemplateBrandingOptionsvalueOf(String name)Returns the enum constant of this type with the specified name.static NotificationTemplateBrandingOptions[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final NotificationTemplateBrandingOptions NONE
-
INCLUDE_COMPANY_LOGO
public static final NotificationTemplateBrandingOptions INCLUDE_COMPANY_LOGO
-
INCLUDE_COMPANY_NAME
public static final NotificationTemplateBrandingOptions INCLUDE_COMPANY_NAME
-
INCLUDE_CONTACT_INFORMATION
public static final NotificationTemplateBrandingOptions INCLUDE_CONTACT_INFORMATION
-
INCLUDE_COMPANY_PORTAL_LINK
public static final NotificationTemplateBrandingOptions INCLUDE_COMPANY_PORTAL_LINK
-
INCLUDE_DEVICE_DETAILS
public static final NotificationTemplateBrandingOptions INCLUDE_DEVICE_DETAILS
-
UNKNOWN_FUTURE_VALUE
public static final NotificationTemplateBrandingOptions UNKNOWN_FUTURE_VALUE
-
-
Method Detail
-
values
public static NotificationTemplateBrandingOptions[] 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 (NotificationTemplateBrandingOptions c : NotificationTemplateBrandingOptions.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NotificationTemplateBrandingOptions 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
-
-