Enum StructureFields.AdditionInfo
- java.lang.Object
-
- java.lang.Enum<StructureFields.AdditionInfo>
-
- org.tmatesoft.svn.core.internal.wc17.db.StructureFields.AdditionInfo
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<StructureFields.AdditionInfo>
- Enclosing class:
- StructureFields
public static enum StructureFields.AdditionInfo extends java.lang.Enum<StructureFields.AdditionInfo>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description movedFromOpDepth
movedFromOpRootRelPath
movedFromRelPath
opRootAbsPath
opRootRelPath
originalReposId
originalReposRelPath
originalRevision
originalRootUrl
originalUuid
reposId
reposRelPath
reposRootUrl
reposUuid
status
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static StructureFields.AdditionInfo
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static StructureFields.AdditionInfo[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
status
public static final StructureFields.AdditionInfo status
-
opRootAbsPath
public static final StructureFields.AdditionInfo opRootAbsPath
-
opRootRelPath
public static final StructureFields.AdditionInfo opRootRelPath
-
reposRelPath
public static final StructureFields.AdditionInfo reposRelPath
-
reposId
public static final StructureFields.AdditionInfo reposId
-
reposRootUrl
public static final StructureFields.AdditionInfo reposRootUrl
-
reposUuid
public static final StructureFields.AdditionInfo reposUuid
-
originalReposRelPath
public static final StructureFields.AdditionInfo originalReposRelPath
-
originalReposId
public static final StructureFields.AdditionInfo originalReposId
-
originalRootUrl
public static final StructureFields.AdditionInfo originalRootUrl
-
originalUuid
public static final StructureFields.AdditionInfo originalUuid
-
originalRevision
public static final StructureFields.AdditionInfo originalRevision
-
movedFromRelPath
public static final StructureFields.AdditionInfo movedFromRelPath
-
movedFromOpRootRelPath
public static final StructureFields.AdditionInfo movedFromOpRootRelPath
-
movedFromOpDepth
public static final StructureFields.AdditionInfo movedFromOpDepth
-
-
Method Detail
-
values
public static StructureFields.AdditionInfo[] 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 (StructureFields.AdditionInfo c : StructureFields.AdditionInfo.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StructureFields.AdditionInfo 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
-
-