public enum EventResultFilter extends Enum<EventResultFilter>
ResultsRestAPI| Enum Constant and Description |
|---|
All
returns all event results independent from the succeed status
|
Failed
returns only failed event results
|
Success
returns only successful event results
|
| Modifier and Type | Method and Description |
|---|---|
static EventResultFilter |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventResultFilter[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventResultFilter All
public static final EventResultFilter Success
public static final EventResultFilter Failed
public static EventResultFilter[] values()
for (EventResultFilter c : EventResultFilter.values()) System.out.println(c);
public static EventResultFilter 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 © 2005–2018 Alfresco Software. All rights reserved.