public enum AuditControl extends Enum<AuditControl>
| Enum Constant and Description |
|---|
WILL_AUDIT
will audit this call (or will defer to outside context if auditing
|
WILL_NOT_AUDIT
will not audit
|
| Modifier and Type | Method and Description |
|---|---|
static AuditControl |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuditControl[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuditControl WILL_AUDIT
public static final AuditControl WILL_NOT_AUDIT
public static AuditControl[] values()
for (AuditControl c : AuditControl.values()) System.out.println(c);
public static AuditControl 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 nullCopyright © 2016 Internet2. All rights reserved.