Package odata.msgraph.client.enums
Enum PayloadTheme
- java.lang.Object
-
- java.lang.Enum<PayloadTheme>
-
- odata.msgraph.client.enums.PayloadTheme
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<PayloadTheme>
public enum PayloadTheme extends Enum<PayloadTheme> implements com.github.davidmoten.odata.client.Enum
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static PayloadThemevalueOf(String name)Returns the enum constant of this type with the specified name.static PayloadTheme[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final PayloadTheme UNKNOWN
-
OTHER
public static final PayloadTheme OTHER
-
ACCOUNT_ACTIVATION
public static final PayloadTheme ACCOUNT_ACTIVATION
-
ACCOUNT_VERIFICATION
public static final PayloadTheme ACCOUNT_VERIFICATION
-
BILLING
public static final PayloadTheme BILLING
-
CLEAN_UP_MAIL
public static final PayloadTheme CLEAN_UP_MAIL
-
CONTROVERSIAL
public static final PayloadTheme CONTROVERSIAL
-
DOCUMENT_RECEIVED
public static final PayloadTheme DOCUMENT_RECEIVED
-
EXPENSE
public static final PayloadTheme EXPENSE
-
FAX
public static final PayloadTheme FAX
-
FINANCE_REPORT
public static final PayloadTheme FINANCE_REPORT
-
INCOMING_MESSAGES
public static final PayloadTheme INCOMING_MESSAGES
-
INVOICE
public static final PayloadTheme INVOICE
-
ITEM_RECEIVED
public static final PayloadTheme ITEM_RECEIVED
-
LOGIN_ALERT
public static final PayloadTheme LOGIN_ALERT
-
MAIL_RECEIVED
public static final PayloadTheme MAIL_RECEIVED
-
PASSWORD
public static final PayloadTheme PASSWORD
-
PAYMENT
public static final PayloadTheme PAYMENT
-
PAYROLL
public static final PayloadTheme PAYROLL
-
PERSONALIZED_OFFER
public static final PayloadTheme PERSONALIZED_OFFER
-
QUARANTINE
public static final PayloadTheme QUARANTINE
-
REMOTE_WORK
public static final PayloadTheme REMOTE_WORK
-
REVIEW_MESSAGE
public static final PayloadTheme REVIEW_MESSAGE
-
SECURITY_UPDATE
public static final PayloadTheme SECURITY_UPDATE
-
SERVICE_SUSPENDED
public static final PayloadTheme SERVICE_SUSPENDED
-
SIGNATURE_REQUIRED
public static final PayloadTheme SIGNATURE_REQUIRED
-
UPGRADE_MAILBOX_STORAGE
public static final PayloadTheme UPGRADE_MAILBOX_STORAGE
-
VERIFY_MAILBOX
public static final PayloadTheme VERIFY_MAILBOX
-
VOICEMAIL
public static final PayloadTheme VOICEMAIL
-
ADVERTISEMENT
public static final PayloadTheme ADVERTISEMENT
-
EMPLOYEE_ENGAGEMENT
public static final PayloadTheme EMPLOYEE_ENGAGEMENT
-
UNKNOWN_FUTURE_VALUE
public static final PayloadTheme UNKNOWN_FUTURE_VALUE
-
-
Method Detail
-
values
public static PayloadTheme[] 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 (PayloadTheme c : PayloadTheme.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PayloadTheme 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
-
-