public enum AuditEnum extends Enum<AuditEnum>
Enum Constant and Description |
---|
CONTEXTPARTITION
For use with insert-into audit.
|
DATAFLOW_OP
For use with data flow (non-source and source) operators.
|
DATAFLOW_SOURCE
For use with data flow source operators.
|
DATAFLOW_TRANSITION
For use with data flows specifically for transitions.
|
EXPRDEF
For use with expression-definition audit.
|
EXPRESSION
For use with expression audit.
|
EXPRESSION_NESTED
For use with expression audit.
|
INSERT
For use with insert-into audit.
|
PATTERN
For use with pattern audit.
|
PATTERNINSTANCES
For use with pattern audit.
|
PROPERTY
For use with property audit.
|
SCHEDULE
For use with schedule-audit.
|
STREAM
For use with stream-audit.
|
VIEW
For use with view audit.
|
Modifier and Type | Method and Description |
---|---|
Audit |
getAudit(Annotation[] annotations)
Check if the hint is present in the annotations provided.
|
String |
getPrettyPrintText()
Returns text used for the category of the audit log item.
|
String |
getValue()
Returns the constant.
|
static AuditEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AuditEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuditEnum PROPERTY
public static final AuditEnum EXPRESSION
public static final AuditEnum EXPRESSION_NESTED
public static final AuditEnum EXPRDEF
public static final AuditEnum VIEW
public static final AuditEnum PATTERN
public static final AuditEnum PATTERNINSTANCES
public static final AuditEnum STREAM
public static final AuditEnum SCHEDULE
public static final AuditEnum INSERT
public static final AuditEnum DATAFLOW_SOURCE
public static final AuditEnum DATAFLOW_OP
public static final AuditEnum DATAFLOW_TRANSITION
public static final AuditEnum CONTEXTPARTITION
public static AuditEnum[] values()
for (AuditEnum c : AuditEnum.values()) System.out.println(c);
public static AuditEnum 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 getValue()
public String getPrettyPrintText()
public Audit getAudit(Annotation[] annotations)
annotations
- the annotations to inspect