|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<RevisionOperation.OperationType>
de.espirit.firstspirit.storage.RevisionOperation.OperationType
public static enum RevisionOperation.OperationType
The type of the revision operation.
Enum Constant Summary | |
---|---|
CONTENT_COMMIT
Indicates a commit of content changes. |
|
CREATE
Indicates a create operation |
|
DELETE
Indicates a delete operation |
|
MODIFY
Indicates a modification operation |
|
MOVE
Indicates a move operation |
|
RELEASE
Indicates a release operation |
|
SERVER_RELEASE
Indicates a server release operation |
Method Summary | |
---|---|
static RevisionOperation.OperationType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static RevisionOperation.OperationType[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final RevisionOperation.OperationType CREATE
PageFolder.createPage(String, de.espirit.firstspirit.access.store.templatestore.Template)
,
CreateOperation
public static final RevisionOperation.OperationType MODIFY
modification operation
StoreElement.save()
,
ModifyOperation
public static final RevisionOperation.OperationType MOVE
IDProvider.moveChild(de.espirit.firstspirit.access.store.IDProvider)
,
MoveOperation
public static final RevisionOperation.OperationType DELETE
StoreElement.delete()
,
DeleteOperation
public static final RevisionOperation.OperationType CONTENT_COMMIT
Session.commit()
,
ContentOperation
public static final RevisionOperation.OperationType RELEASE
IDProvider.release()
,
ReleaseOperation
public static final RevisionOperation.OperationType SERVER_RELEASE
AccessUtil.release(de.espirit.firstspirit.access.store.IDProvider, boolean)
,
ServerReleaseOperation
Method Detail |
---|
public static final RevisionOperation.OperationType[] values()
for(RevisionOperation.OperationType c : RevisionOperation.OperationType.values()) System.out.println(c);
public static RevisionOperation.OperationType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |