Enum SVNWCDbSchema.NODES__Fields
- java.lang.Object
-
- java.lang.Enum<SVNWCDbSchema.NODES__Fields>
-
- org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema.NODES__Fields
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SVNWCDbSchema.NODES__Fields>
- Enclosing class:
- SVNWCDbSchema
public static enum SVNWCDbSchema.NODES__Fields extends java.lang.Enum<SVNWCDbSchema.NODES__Fields>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description changed_author
changed_date
changed_revision
checksum
dav_cache
depth
file_external
inherited_props
kind
last_mod_time
local_relpath
moved_here
moved_to
op_depth
parent_relpath
presence
properties
repos_id
repos_path
revision
symlink_target
translated_size
wc_id
-
Constructor Summary
Constructors Modifier Constructor Description private
NODES__Fields()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SVNWCDbSchema.NODES__Fields
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SVNWCDbSchema.NODES__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.NODES__Fields wc_id
-
local_relpath
public static final SVNWCDbSchema.NODES__Fields local_relpath
-
op_depth
public static final SVNWCDbSchema.NODES__Fields op_depth
-
parent_relpath
public static final SVNWCDbSchema.NODES__Fields parent_relpath
-
repos_id
public static final SVNWCDbSchema.NODES__Fields repos_id
-
repos_path
public static final SVNWCDbSchema.NODES__Fields repos_path
-
revision
public static final SVNWCDbSchema.NODES__Fields revision
-
presence
public static final SVNWCDbSchema.NODES__Fields presence
-
moved_here
public static final SVNWCDbSchema.NODES__Fields moved_here
-
moved_to
public static final SVNWCDbSchema.NODES__Fields moved_to
-
kind
public static final SVNWCDbSchema.NODES__Fields kind
-
properties
public static final SVNWCDbSchema.NODES__Fields properties
-
depth
public static final SVNWCDbSchema.NODES__Fields depth
-
checksum
public static final SVNWCDbSchema.NODES__Fields checksum
-
symlink_target
public static final SVNWCDbSchema.NODES__Fields symlink_target
-
changed_revision
public static final SVNWCDbSchema.NODES__Fields changed_revision
-
changed_date
public static final SVNWCDbSchema.NODES__Fields changed_date
-
changed_author
public static final SVNWCDbSchema.NODES__Fields changed_author
-
translated_size
public static final SVNWCDbSchema.NODES__Fields translated_size
-
last_mod_time
public static final SVNWCDbSchema.NODES__Fields last_mod_time
-
dav_cache
public static final SVNWCDbSchema.NODES__Fields dav_cache
-
file_external
public static final SVNWCDbSchema.NODES__Fields file_external
-
inherited_props
public static final SVNWCDbSchema.NODES__Fields inherited_props
-
-
Method Detail
-
values
public static SVNWCDbSchema.NODES__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.NODES__Fields c : SVNWCDbSchema.NODES__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.NODES__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
-
-