public enum TagOperationResult extends Enum<TagOperationResult>
TagPlugin
operation.Enum Constant and Description |
---|
FAILED
The operation failed with an exception.
|
NO_EFFECT
The operation did not change any data.
|
NOT_ALLOWED
The current user does not have permission to perform the operation.
|
OK
The operation was successful, and data changes occurred.
|
Modifier and Type | Method and Description |
---|---|
static TagOperationResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TagOperationResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TagOperationResult OK
public static final TagOperationResult NO_EFFECT
public static final TagOperationResult NOT_ALLOWED
public static final TagOperationResult FAILED
public static TagOperationResult[] values()
for (TagOperationResult c : TagOperationResult.values()) System.out.println(c);
public static TagOperationResult 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 © 2004–2021 XWiki. All rights reserved.