Enum ISVNWCDb.WCDbBaseInfo.BaseInfoField
- java.lang.Object
-
- java.lang.Enum<ISVNWCDb.WCDbBaseInfo.BaseInfoField>
-
- org.tmatesoft.svn.core.internal.wc17.db.ISVNWCDb.WCDbBaseInfo.BaseInfoField
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ISVNWCDb.WCDbBaseInfo.BaseInfoField>
- Enclosing class:
- ISVNWCDb.WCDbBaseInfo
public static enum ISVNWCDb.WCDbBaseInfo.BaseInfoField extends java.lang.Enum<ISVNWCDb.WCDbBaseInfo.BaseInfoField>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description changedAuthor
changedDate
changedRev
checksum
depth
hadProps
kind
lastModTime
lock
props
reposId
reposRelPath
reposRootUrl
reposUuid
revision
status
target
translatedSize
updateRoot
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ISVNWCDb.WCDbBaseInfo.BaseInfoField
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ISVNWCDb.WCDbBaseInfo.BaseInfoField[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
status
public static final ISVNWCDb.WCDbBaseInfo.BaseInfoField status
-
kind
public static final ISVNWCDb.WCDbBaseInfo.BaseInfoField kind
-
revision
public static final ISVNWCDb.WCDbBaseInfo.BaseInfoField revision
-
reposRelPath
public static final ISVNWCDb.WCDbBaseInfo.BaseInfoField reposRelPath
-
reposRootUrl
public static final ISVNWCDb.WCDbBaseInfo.BaseInfoField reposRootUrl
-
reposUuid
public static final ISVNWCDb.WCDbBaseInfo.BaseInfoField reposUuid
-
changedRev
public static final ISVNWCDb.WCDbBaseInfo.BaseInfoField changedRev
-
changedDate
public static final ISVNWCDb.WCDbBaseInfo.BaseInfoField changedDate
-
changedAuthor
public static final ISVNWCDb.WCDbBaseInfo.BaseInfoField changedAuthor
-
lastModTime
public static final ISVNWCDb.WCDbBaseInfo.BaseInfoField lastModTime
-
depth
public static final ISVNWCDb.WCDbBaseInfo.BaseInfoField depth
-
checksum
public static final ISVNWCDb.WCDbBaseInfo.BaseInfoField checksum
-
translatedSize
public static final ISVNWCDb.WCDbBaseInfo.BaseInfoField translatedSize
-
target
public static final ISVNWCDb.WCDbBaseInfo.BaseInfoField target
-
lock
public static final ISVNWCDb.WCDbBaseInfo.BaseInfoField lock
-
updateRoot
public static final ISVNWCDb.WCDbBaseInfo.BaseInfoField updateRoot
-
reposId
public static final ISVNWCDb.WCDbBaseInfo.BaseInfoField reposId
-
hadProps
public static final ISVNWCDb.WCDbBaseInfo.BaseInfoField hadProps
-
props
public static final ISVNWCDb.WCDbBaseInfo.BaseInfoField props
-
-
Method Detail
-
values
public static ISVNWCDb.WCDbBaseInfo.BaseInfoField[] 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 (ISVNWCDb.WCDbBaseInfo.BaseInfoField c : ISVNWCDb.WCDbBaseInfo.BaseInfoField.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ISVNWCDb.WCDbBaseInfo.BaseInfoField valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-