public enum MonitoredEvents extends Enum<MonitoredEvents>
Java class for MonitoredEvents.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="MonitoredEvents">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="AuditTrail"/>
<enumeration value="Login"/>
<enumeration value="Entity"/>
<enumeration value="DataExport"/>
<enumeration value="AccessResource"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ACCESS_RESOURCE |
AUDIT_TRAIL |
DATA_EXPORT |
ENTITY |
LOGIN |
| Modifier and Type | Method and Description |
|---|---|
static MonitoredEvents |
fromValue(String v) |
String |
value() |
static MonitoredEvents |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MonitoredEvents[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MonitoredEvents AUDIT_TRAIL
public static final MonitoredEvents LOGIN
public static final MonitoredEvents ENTITY
public static final MonitoredEvents DATA_EXPORT
public static final MonitoredEvents ACCESS_RESOURCE
public static MonitoredEvents[] values()
for (MonitoredEvents c : MonitoredEvents.values()) System.out.println(c);
public static MonitoredEvents valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static MonitoredEvents fromValue(String v)
Copyright © 2016. All rights reserved.