public static enum ISVNWCDb.SVNWCDbStatus extends java.lang.Enum<ISVNWCDb.SVNWCDbStatus>
Enum Constant and Description |
---|
Added
The node has been added (potentially obscuring a delete or move of
the BASE node; see BASE_SHADOWED param).
|
BaseDeleted
The BASE node has been marked as deleted.
|
Copied
This node has been added with history, based on the copy source.
|
Deleted
This node has been deleted.
|
Excluded
This node has been administratively excluded.
|
Incomplete
This node is known, but its information is incomplete.
|
MovedHere
This node has been added with history, based on the move source.
|
Normal
The node is present and has no known modifications applied to it.
|
NotPresent
This node is not present in this revision.
|
Obstructed
The information for this directory node is obstructed by something in
the local filesystem.
|
ObstructedAdd
The information for this directory node is obstructed by something in
the local filesystem.
|
ObstructedDelete
The information for this directory node is obstructed by something in
the local filesystem.
|
ServerExcluded
This node was named by the server, but no information was provided.
|
Modifier and Type | Method and Description |
---|---|
boolean |
isNotPresent() |
static ISVNWCDb.SVNWCDbStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ISVNWCDb.SVNWCDbStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ISVNWCDb.SVNWCDbStatus Normal
public static final ISVNWCDb.SVNWCDbStatus Added
In many cases WCDbStatus#Added
means any of added, moved-here
or copied-here. See individual functions for clarification and
ISVNWCDb#scanAddition(File, AdditionInfoField...)
to get more
details.
public static final ISVNWCDb.SVNWCDbStatus MovedHere
public static final ISVNWCDb.SVNWCDbStatus Copied
public static final ISVNWCDb.SVNWCDbStatus Deleted
public static final ISVNWCDb.SVNWCDbStatus Obstructed
This is only returned by an unshadowed BASE node. If a WORKING node is present, then obstructed_delete or obstructed_add is returned as appropriate.
### only used with per-dir .svn subdirectories.
public static final ISVNWCDb.SVNWCDbStatus ObstructedDelete
The directory has been marked for deletion.
### only used with per-dir .svn subdirectories.
public static final ISVNWCDb.SVNWCDbStatus ObstructedAdd
The directory has been marked for addition.
### only used with per-dir .svn subdirectories.
public static final ISVNWCDb.SVNWCDbStatus ServerExcluded
public static final ISVNWCDb.SVNWCDbStatus Excluded
public static final ISVNWCDb.SVNWCDbStatus NotPresent
public static final ISVNWCDb.SVNWCDbStatus Incomplete
When the incomplete status applies to a directory, the list of children and the list of its base properties as recorded in the working copy do not match their working copy versions. The update editor can complete a directory by using a different update algorithm.
public static final ISVNWCDb.SVNWCDbStatus BaseDeleted
public static ISVNWCDb.SVNWCDbStatus[] values()
for (ISVNWCDb.SVNWCDbStatus c : ISVNWCDb.SVNWCDbStatus.values()) System.out.println(c);
public static ISVNWCDb.SVNWCDbStatus valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic boolean isNotPresent()
Copyright © 2004-2012 TMate Software Ltd. All Rights Reserved.