org.apache.subversion.javahl
Enum ClientNotifyInformation.Action

java.lang.Object
  extended by java.lang.Enum<ClientNotifyInformation.Action>
      extended by org.apache.subversion.javahl.ClientNotifyInformation.Action
All Implemented Interfaces:
Serializable, Comparable<ClientNotifyInformation.Action>
Enclosing class:
ClientNotifyInformation

public static enum ClientNotifyInformation.Action
extends Enum<ClientNotifyInformation.Action>

The type of action triggering the notification


Enum Constant Summary
add
          Adding a path to revision control.
blame_revision
          Processed a single revision's blame.
changelist_clear
          Clear the changelist for a path.
changelist_moved
          A path has moved to another changelist.
changelist_set
          Set the changelist for a path.
cleanup_external
          Running cleanup on an external module.
commit_added
          Committing an addition.
commit_copied
          Committing a non-overwriting copy (path is the target of the copy, not the source).
commit_copied_replaced
          Committing an overwriting (replace) copy (path is the target of the copy, not the source).
commit_deleted
          Committing a deletion.
commit_finalizing
          Finalizing commit.
commit_modified
          Committing a modification.
commit_postfix_txdelta
          Transmitting post-fix text-delta data for a file.
commit_replaced
          Committing a replacement.
conflict_resolver_done
          Conflict resolver is done.
conflict_resolver_starting
          Conflict resolver is starting.
copy
          Copying a versioned path.
delete
          Deleting a versioned path.
exclude
          Removing a path by excluding it.
exists
          Tried adding a path that already exists.
failed_conflict
          Operation failed because the node remains in conflict
failed_external
          The path is a subdirectory referenced in an externals definition which is unable to be operated on.
failed_forbidden_by_server
          Operation failed because the operation was forbidden
failed_lock
          Failed to lock a path
failed_locked
          Operation failed because a node is locked
failed_missing
          Operation failed because an added node is missing
failed_no_parent
          Operation failed because an added parent is not selected
failed_obstructed
          Operation failed because a node is obstructed
failed_out_of_date
          Operation failed because a node is out of date
failed_requires_target
          The operation failed because the operation (E.g.
failed_revert
          A revert operation has failed.
failed_unlock
          Failed to unlock a path
foreign_copy_begin
          A copy from a foreign repository has started
foreign_merge_begin
          A merge operation from a foreign repository has begun.
info_external
          Running info on an external module.
left_local_modifications
          Operation left local modifications.
locked
          Locking a path
merge_begin
          A merge operation has begun.
merge_completed
          The last notification in a merge.
merge_elide_info
          Mergeinfo was removed due to elision.
merge_record_info
          The mergeinfo on path was updated.
merge_record_info_begin
          Mergeinfo describing a merge was recorded.
move_broken
          A move in the working copy has been broken
patch
          A file in the working copy was patched.
patch_applied_hunk
          A hunk from a patch was applied.
patch_hunk_already_applied
          A hunk from a patch was found to be already applied.
patch_rejected_hunk
          A hunk from a patch was rejected.
path_nonexistent
          The operation was attempted on a path which doesn't exist.
property_added
          Property added.
property_deleted
          Property deleted.
property_deleted_nonexistent
          Property delete nonexistent.
property_modified
          Property modified.
resolved
          Resolving a conflict.
restore
          Restoring a missing path from the pristine text-base.
revert
          Reverting a modified path.
revprop_deleted
          Revision property deleted.
revprop_set
          Revision property set.
skip
          Skipping a path.
skip_conflicted
          Operation skipped the path because it was conflicted
status_completed
          The last notification in a status (including status on externals).
status_external
          Running status on an external module.
tree_conflict
          The path is a tree-conflict victim of the intended action
unlocked
          Unlocking a path
update_add
          Got an add in an update.
update_broken_lock
          The lock on a file was removed during update
update_completed
          The last notification in an update
update_delete
          Got a delete in an update.
update_external
          About to update an external module, use for checkouts and switches too, end with @c svn_wc_update_completed.
update_external_removed
          An update operation removed an external working copy.
update_replaced
          Got a replaced in an update.
update_shadowed_add
          Applying a shadowed add
update_shadowed_delete
          Applying a shadowed delete
update_shadowed_update
          Applying a shadowed update
update_skip_access_denied
          Skipped a file or directory to which access couldn't be obtained
update_skip_obstruction
          Skipping an obstruction working copy
update_skip_working_only
          Skipping a working only node
update_started
          Starting an update operation
update_update
          Got any other action in an update.
upgraded_path
          An working copy directory was upgraded to the latest format.
url_redirect
          The server has instructed the client to follow a URL redirection.
 
Method Summary
 String toString()
           
static ClientNotifyInformation.Action valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ClientNotifyInformation.Action[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

add

public static final ClientNotifyInformation.Action add
Adding a path to revision control.


copy

public static final ClientNotifyInformation.Action copy
Copying a versioned path.


delete

public static final ClientNotifyInformation.Action delete
Deleting a versioned path.


restore

public static final ClientNotifyInformation.Action restore
Restoring a missing path from the pristine text-base.


revert

public static final ClientNotifyInformation.Action revert
Reverting a modified path.


failed_revert

public static final ClientNotifyInformation.Action failed_revert
A revert operation has failed.


resolved

public static final ClientNotifyInformation.Action resolved
Resolving a conflict.


skip

public static final ClientNotifyInformation.Action skip
Skipping a path.


update_delete

public static final ClientNotifyInformation.Action update_delete
Got a delete in an update.


update_add

public static final ClientNotifyInformation.Action update_add
Got an add in an update.


update_update

public static final ClientNotifyInformation.Action update_update
Got any other action in an update.


update_completed

public static final ClientNotifyInformation.Action update_completed
The last notification in an update


update_external

public static final ClientNotifyInformation.Action update_external
About to update an external module, use for checkouts and switches too, end with @c svn_wc_update_completed.


status_completed

public static final ClientNotifyInformation.Action status_completed
The last notification in a status (including status on externals).


status_external

public static final ClientNotifyInformation.Action status_external
Running status on an external module.


commit_modified

public static final ClientNotifyInformation.Action commit_modified
Committing a modification.


commit_added

public static final ClientNotifyInformation.Action commit_added
Committing an addition.


commit_deleted

public static final ClientNotifyInformation.Action commit_deleted
Committing a deletion.


commit_replaced

public static final ClientNotifyInformation.Action commit_replaced
Committing a replacement.


commit_postfix_txdelta

public static final ClientNotifyInformation.Action commit_postfix_txdelta
Transmitting post-fix text-delta data for a file.


blame_revision

public static final ClientNotifyInformation.Action blame_revision
Processed a single revision's blame.


locked

public static final ClientNotifyInformation.Action locked
Locking a path


unlocked

public static final ClientNotifyInformation.Action unlocked
Unlocking a path


failed_lock

public static final ClientNotifyInformation.Action failed_lock
Failed to lock a path


failed_unlock

public static final ClientNotifyInformation.Action failed_unlock
Failed to unlock a path


exists

public static final ClientNotifyInformation.Action exists
Tried adding a path that already exists.


changelist_set

public static final ClientNotifyInformation.Action changelist_set
Set the changelist for a path.


changelist_clear

public static final ClientNotifyInformation.Action changelist_clear
Clear the changelist for a path.


changelist_moved

public static final ClientNotifyInformation.Action changelist_moved
A path has moved to another changelist.


merge_begin

public static final ClientNotifyInformation.Action merge_begin
A merge operation has begun.


foreign_merge_begin

public static final ClientNotifyInformation.Action foreign_merge_begin
A merge operation from a foreign repository has begun.


update_replaced

public static final ClientNotifyInformation.Action update_replaced
Got a replaced in an update.


property_added

public static final ClientNotifyInformation.Action property_added
Property added.


property_modified

public static final ClientNotifyInformation.Action property_modified
Property modified.


property_deleted

public static final ClientNotifyInformation.Action property_deleted
Property deleted.


property_deleted_nonexistent

public static final ClientNotifyInformation.Action property_deleted_nonexistent
Property delete nonexistent.


revprop_set

public static final ClientNotifyInformation.Action revprop_set
Revision property set.


revprop_deleted

public static final ClientNotifyInformation.Action revprop_deleted
Revision property deleted.


merge_completed

public static final ClientNotifyInformation.Action merge_completed
The last notification in a merge.


tree_conflict

public static final ClientNotifyInformation.Action tree_conflict
The path is a tree-conflict victim of the intended action


failed_external

public static final ClientNotifyInformation.Action failed_external
The path is a subdirectory referenced in an externals definition which is unable to be operated on.


update_started

public static final ClientNotifyInformation.Action update_started
Starting an update operation


update_skip_obstruction

public static final ClientNotifyInformation.Action update_skip_obstruction
Skipping an obstruction working copy


update_skip_working_only

public static final ClientNotifyInformation.Action update_skip_working_only
Skipping a working only node


update_skip_access_denied

public static final ClientNotifyInformation.Action update_skip_access_denied
Skipped a file or directory to which access couldn't be obtained


update_external_removed

public static final ClientNotifyInformation.Action update_external_removed
An update operation removed an external working copy.


update_shadowed_add

public static final ClientNotifyInformation.Action update_shadowed_add
Applying a shadowed add


update_shadowed_update

public static final ClientNotifyInformation.Action update_shadowed_update
Applying a shadowed update


update_shadowed_delete

public static final ClientNotifyInformation.Action update_shadowed_delete
Applying a shadowed delete


merge_record_info

public static final ClientNotifyInformation.Action merge_record_info
The mergeinfo on path was updated.


upgraded_path

public static final ClientNotifyInformation.Action upgraded_path
An working copy directory was upgraded to the latest format.


merge_record_info_begin

public static final ClientNotifyInformation.Action merge_record_info_begin
Mergeinfo describing a merge was recorded.


merge_elide_info

public static final ClientNotifyInformation.Action merge_elide_info
Mergeinfo was removed due to elision.


patch

public static final ClientNotifyInformation.Action patch
A file in the working copy was patched.


patch_applied_hunk

public static final ClientNotifyInformation.Action patch_applied_hunk
A hunk from a patch was applied.


patch_rejected_hunk

public static final ClientNotifyInformation.Action patch_rejected_hunk
A hunk from a patch was rejected.


patch_hunk_already_applied

public static final ClientNotifyInformation.Action patch_hunk_already_applied
A hunk from a patch was found to be already applied.


commit_copied

public static final ClientNotifyInformation.Action commit_copied
Committing a non-overwriting copy (path is the target of the copy, not the source).


commit_copied_replaced

public static final ClientNotifyInformation.Action commit_copied_replaced
Committing an overwriting (replace) copy (path is the target of the copy, not the source).


url_redirect

public static final ClientNotifyInformation.Action url_redirect
The server has instructed the client to follow a URL redirection.


path_nonexistent

public static final ClientNotifyInformation.Action path_nonexistent
The operation was attempted on a path which doesn't exist.


exclude

public static final ClientNotifyInformation.Action exclude
Removing a path by excluding it.


failed_conflict

public static final ClientNotifyInformation.Action failed_conflict
Operation failed because the node remains in conflict


failed_missing

public static final ClientNotifyInformation.Action failed_missing
Operation failed because an added node is missing


failed_out_of_date

public static final ClientNotifyInformation.Action failed_out_of_date
Operation failed because a node is out of date


failed_no_parent

public static final ClientNotifyInformation.Action failed_no_parent
Operation failed because an added parent is not selected


failed_locked

public static final ClientNotifyInformation.Action failed_locked
Operation failed because a node is locked


failed_forbidden_by_server

public static final ClientNotifyInformation.Action failed_forbidden_by_server
Operation failed because the operation was forbidden


skip_conflicted

public static final ClientNotifyInformation.Action skip_conflicted
Operation skipped the path because it was conflicted


update_broken_lock

public static final ClientNotifyInformation.Action update_broken_lock
The lock on a file was removed during update


failed_obstructed

public static final ClientNotifyInformation.Action failed_obstructed
Operation failed because a node is obstructed


conflict_resolver_starting

public static final ClientNotifyInformation.Action conflict_resolver_starting
Conflict resolver is starting.


conflict_resolver_done

public static final ClientNotifyInformation.Action conflict_resolver_done
Conflict resolver is done.


left_local_modifications

public static final ClientNotifyInformation.Action left_local_modifications
Operation left local modifications.


foreign_copy_begin

public static final ClientNotifyInformation.Action foreign_copy_begin
A copy from a foreign repository has started

Since:
New in 1.8.

move_broken

public static final ClientNotifyInformation.Action move_broken
A move in the working copy has been broken

Since:
New in 1.8.

cleanup_external

public static final ClientNotifyInformation.Action cleanup_external
Running cleanup on an external module.

Since:
New in 1.9.

failed_requires_target

public static final ClientNotifyInformation.Action failed_requires_target
The operation failed because the operation (E.g. commit) is only valid if the operation includes this path.

Since:
New in 1.9.

info_external

public static final ClientNotifyInformation.Action info_external
Running info on an external module.

Since:
New in 1.9.

commit_finalizing

public static final ClientNotifyInformation.Action commit_finalizing
Finalizing commit.

Since:
New in 1.9.
Method Detail

values

public static ClientNotifyInformation.Action[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (ClientNotifyInformation.Action c : ClientNotifyInformation.Action.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ClientNotifyInformation.Action valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

toString

public String toString()
Overrides:
toString in class Enum<ClientNotifyInformation.Action>