Enum Class EventType
- All Implemented Interfaces:
Serializable,Comparable<EventType>,Constable
Event types, which include the following possible values:
PASSWORD- Password expiry event type.CERTIFICATE- Client certificate expiry event type.CIPHER- Insecure or deprecated TLS cipher suite event type.TLS_PROTOCOL- Insecure or deprecated TLS protocol event type.NEW_PW- New password does not meet server password complexity requirements event type.STAT- Login security statistical warning event type.CUSTOM- Custom event type attribute like the "customName" attribute.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic EventTypegetEventType(String aString) Get the event type enumerated value given the matching string.toString()Convert the enumeratedEventTypevalue to aString.static EventTypeReturns the enum constant of this class with the specified name.static EventType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PASSWORD
-
CERTIFICATE
-
CIPHER
-
TLS_PROTOCOL
-
NEW_PW
-
STAT
-
CUSTOM
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
getEventType
Get the event type enumerated value given the matching string.- Parameters:
aString-EventTypeenumerated string to convert to an enumeratedEventTypeinstance.- Returns:
- Enumerated
EventTypevalue matching theString. - Throws:
InvalidParameterException- IfaStringdoes not match an enumeratedEventTypestring value.
-
toString
Convert the enumeratedEventTypevalue to aString.
-