Enum AlertDetermination
- java.lang.Object
-
- java.lang.Enum<AlertDetermination>
-
- odata.msgraph.client.security.enums.AlertDetermination
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<AlertDetermination>
public enum AlertDetermination extends Enum<AlertDetermination> 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 AlertDeterminationvalueOf(String name)Returns the enum constant of this type with the specified name.static AlertDetermination[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final AlertDetermination UNKNOWN
-
APT
public static final AlertDetermination APT
-
MALWARE
public static final AlertDetermination MALWARE
-
SECURITY_PERSONNEL
public static final AlertDetermination SECURITY_PERSONNEL
-
SECURITY_TESTING
public static final AlertDetermination SECURITY_TESTING
-
UNWANTED_SOFTWARE
public static final AlertDetermination UNWANTED_SOFTWARE
-
OTHER
public static final AlertDetermination OTHER
-
MULTI_STAGED_ATTACK
public static final AlertDetermination MULTI_STAGED_ATTACK
-
COMPROMISED_ACCOUNT
public static final AlertDetermination COMPROMISED_ACCOUNT
-
PHISHING
public static final AlertDetermination PHISHING
-
MALICIOUS_USER_ACTIVITY
public static final AlertDetermination MALICIOUS_USER_ACTIVITY
-
NOT_MALICIOUS
public static final AlertDetermination NOT_MALICIOUS
-
NOT_ENOUGH_DATA_TO_VALIDATE
public static final AlertDetermination NOT_ENOUGH_DATA_TO_VALIDATE
-
CONFIRMED_ACTIVITY
public static final AlertDetermination CONFIRMED_ACTIVITY
-
LINE_OF_BUSINESS_APPLICATION
public static final AlertDetermination LINE_OF_BUSINESS_APPLICATION
-
UNKNOWN_FUTURE_VALUE
public static final AlertDetermination UNKNOWN_FUTURE_VALUE
-
-
Method Detail
-
values
public static AlertDetermination[] 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 (AlertDetermination c : AlertDetermination.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AlertDetermination 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
-
-