Class SVNRevision.Kind
- java.lang.Object
-
- org.tigris.subversion.svnclientadapter.SVNRevision.Kind
-
- Enclosing class:
- SVNRevision
public static final class SVNRevision.Kind extends java.lang.Object
Various ways of specifying revisions. Various ways of specifying revisions. Note: In contexts where local mods are relevant, the `working' kind refers to the uncommitted "working" revision, which may be modified with respect to its base revision. In other contexts, `working' should behave the same as `committed' or `current'.
-
-
Field Summary
Fields Modifier and Type Field Description static int
base
.svn/entries current revisionstatic int
committed
rev of most recent changestatic int
date
revision given as datestatic int
head
repository youngeststatic int
number
revision given as numberstatic int
previous
(rev of most recent change) - 1static int
unspecified
No revision information given.static int
working
current, plus local mods
-
Constructor Summary
Constructors Constructor Description Kind()
-
-
-
Field Detail
-
unspecified
public static final int unspecified
No revision information given.- See Also:
- Constant Field Values
-
number
public static final int number
revision given as number- See Also:
- Constant Field Values
-
date
public static final int date
revision given as date- See Also:
- Constant Field Values
-
committed
public static final int committed
rev of most recent change- See Also:
- Constant Field Values
-
previous
public static final int previous
(rev of most recent change) - 1- See Also:
- Constant Field Values
-
base
public static final int base
.svn/entries current revision- See Also:
- Constant Field Values
-
working
public static final int working
current, plus local mods- See Also:
- Constant Field Values
-
head
public static final int head
repository youngest- See Also:
- Constant Field Values
-
-