Enum ISecurityEvent.Type
- java.lang.Object
-
- java.lang.Enum<ISecurityEvent.Type>
-
- io.jenkins.plugins.maplelabs.Events.interfaces.ISecurityEvent.Type
-
- All Implemented Interfaces:
Serializable
,Comparable<ISecurityEvent.Type>
- Enclosing interface:
- ISecurityEvent
public static enum ISecurityEvent.Type extends Enum<ISecurityEvent.Type>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AUTHENTICATED
FAILEDTOAUTHENTICATE
FAILEDTOLOGIN
LOGGEDIN
LOGGEDOUT
USER_CREATED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ISecurityEvent.Type
valueOf(String name)
Returns the enum constant of this type with the specified name.static ISecurityEvent.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LOGGEDIN
public static final ISecurityEvent.Type LOGGEDIN
-
LOGGEDOUT
public static final ISecurityEvent.Type LOGGEDOUT
-
USER_CREATED
public static final ISecurityEvent.Type USER_CREATED
-
AUTHENTICATED
public static final ISecurityEvent.Type AUTHENTICATED
-
FAILEDTOLOGIN
public static final ISecurityEvent.Type FAILEDTOLOGIN
-
FAILEDTOAUTHENTICATE
public static final ISecurityEvent.Type FAILEDTOAUTHENTICATE
-
-
Method Detail
-
values
public static ISecurityEvent.Type[] 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 (ISecurityEvent.Type c : ISecurityEvent.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ISecurityEvent.Type 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
-
-