Package com.sun.jna.platform.win32
Enum Advapi32Util.EventLogType
- java.lang.Object
- 
- java.lang.Enum<Advapi32Util.EventLogType>
- 
- com.sun.jna.platform.win32.Advapi32Util.EventLogType
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<Advapi32Util.EventLogType>
 - Enclosing class:
- Advapi32Util
 
 public static enum Advapi32Util.EventLogType extends java.lang.Enum<Advapi32Util.EventLogType> Event log types.
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description AuditFailureAuditSuccessErrorInformationalWarning
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static Advapi32Util.EventLogTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Advapi32Util.EventLogType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
Errorpublic static final Advapi32Util.EventLogType Error 
 - 
Warningpublic static final Advapi32Util.EventLogType Warning 
 - 
Informationalpublic static final Advapi32Util.EventLogType Informational 
 - 
AuditSuccesspublic static final Advapi32Util.EventLogType AuditSuccess 
 - 
AuditFailurepublic static final Advapi32Util.EventLogType AuditFailure 
 
- 
 - 
Method Detail- 
valuespublic static Advapi32Util.EventLogType[] 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 (Advapi32Util.EventLogType c : Advapi32Util.EventLogType.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static Advapi32Util.EventLogType 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 name
- java.lang.NullPointerException- if the argument is null
 
 
- 
 
-