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