Package com.okta.sdk.resource
Enum NotificationType
- java.lang.Object
-
- java.lang.Enum<NotificationType>
-
- com.okta.sdk.resource.NotificationType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<NotificationType>
public enum NotificationType extends java.lang.Enum<NotificationType>
Enum NotificationType
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AD_AGENT
APP_IMPORT
CONNECTOR_AGENT
IWA_AGENT
LDAP_AGENT
OKTA_ANNOUNCEMENT
OKTA_ISSUE
OKTA_UPDATE
RATELIMIT_NOTIFICATION
REPORT_SUSPICIOUS_ACTIVITY
SDK_UNKNOWN
USER_DEPROVISION
USER_LOCKED_OUT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
static NotificationType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static NotificationType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONNECTOR_AGENT
public static final NotificationType CONNECTOR_AGENT
-
USER_LOCKED_OUT
public static final NotificationType USER_LOCKED_OUT
-
APP_IMPORT
public static final NotificationType APP_IMPORT
-
LDAP_AGENT
public static final NotificationType LDAP_AGENT
-
AD_AGENT
public static final NotificationType AD_AGENT
-
OKTA_ANNOUNCEMENT
public static final NotificationType OKTA_ANNOUNCEMENT
-
OKTA_ISSUE
public static final NotificationType OKTA_ISSUE
-
OKTA_UPDATE
public static final NotificationType OKTA_UPDATE
-
IWA_AGENT
public static final NotificationType IWA_AGENT
-
USER_DEPROVISION
public static final NotificationType USER_DEPROVISION
-
REPORT_SUSPICIOUS_ACTIVITY
public static final NotificationType REPORT_SUSPICIOUS_ACTIVITY
-
RATELIMIT_NOTIFICATION
public static final NotificationType RATELIMIT_NOTIFICATION
-
SDK_UNKNOWN
public static final NotificationType SDK_UNKNOWN
-
-
Method Detail
-
values
public static NotificationType[] 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 (NotificationType c : NotificationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NotificationType valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<NotificationType>
-
-