Enum SVNWCDbSchema.WORKING_NODE__Fields
- java.lang.Object
-
- java.lang.Enum<SVNWCDbSchema.WORKING_NODE__Fields>
-
- org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema.WORKING_NODE__Fields
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SVNWCDbSchema.WORKING_NODE__Fields>
- Enclosing class:
- SVNWCDbSchema
public static enum SVNWCDbSchema.WORKING_NODE__Fields extends java.lang.Enum<SVNWCDbSchema.WORKING_NODE__Fields>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description changed_author
changed_date
changed_rev
checksum
copyfrom_repos_id
copyfrom_repos_path
copyfrom_revnum
depth
kind
last_mod_time
local_relpath
parent_relpath
presence
properties
symlink_target
translated_size
wc_id
-
Constructor Summary
Constructors Modifier Constructor Description private
WORKING_NODE__Fields()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SVNWCDbSchema.WORKING_NODE__Fields
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SVNWCDbSchema.WORKING_NODE__Fields[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
wc_id
public static final SVNWCDbSchema.WORKING_NODE__Fields wc_id
-
local_relpath
public static final SVNWCDbSchema.WORKING_NODE__Fields local_relpath
-
parent_relpath
public static final SVNWCDbSchema.WORKING_NODE__Fields parent_relpath
-
copyfrom_repos_id
public static final SVNWCDbSchema.WORKING_NODE__Fields copyfrom_repos_id
-
copyfrom_repos_path
public static final SVNWCDbSchema.WORKING_NODE__Fields copyfrom_repos_path
-
copyfrom_revnum
public static final SVNWCDbSchema.WORKING_NODE__Fields copyfrom_revnum
-
presence
public static final SVNWCDbSchema.WORKING_NODE__Fields presence
-
kind
public static final SVNWCDbSchema.WORKING_NODE__Fields kind
-
properties
public static final SVNWCDbSchema.WORKING_NODE__Fields properties
-
depth
public static final SVNWCDbSchema.WORKING_NODE__Fields depth
-
checksum
public static final SVNWCDbSchema.WORKING_NODE__Fields checksum
-
symlink_target
public static final SVNWCDbSchema.WORKING_NODE__Fields symlink_target
-
changed_rev
public static final SVNWCDbSchema.WORKING_NODE__Fields changed_rev
-
changed_date
public static final SVNWCDbSchema.WORKING_NODE__Fields changed_date
-
changed_author
public static final SVNWCDbSchema.WORKING_NODE__Fields changed_author
-
translated_size
public static final SVNWCDbSchema.WORKING_NODE__Fields translated_size
-
last_mod_time
public static final SVNWCDbSchema.WORKING_NODE__Fields last_mod_time
-
-
Method Detail
-
values
public static SVNWCDbSchema.WORKING_NODE__Fields[] 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 (SVNWCDbSchema.WORKING_NODE__Fields c : SVNWCDbSchema.WORKING_NODE__Fields.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SVNWCDbSchema.WORKING_NODE__Fields 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
-
-