Enum SVNWCDbSchema
- java.lang.Object
-
- java.lang.Enum<SVNWCDbSchema>
-
- org.tmatesoft.svn.core.internal.wc17.db.statement.SVNWCDbSchema
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SVNWCDbSchema>
public enum SVNWCDbSchema extends java.lang.Enum<SVNWCDbSchema>
- Version:
- 1.3
-
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTUAL_NODE
BASE_NODE
CHANGELIST_LIST
DELETE_LIST
EXTERNALS
LOCK
NODE_PROPS_CACHE
NODES
PRISTINE
REPOSITORY
REVERT_LIST
TARGETS_LIST
UPDATE_MOVE_LIST
WC_LOCK
WCROOT
WORK_QUEUE
WORKING_NODE
-
Constructor Summary
Constructors Modifier Constructor Description private
SVNWCDbSchema(java.lang.Class<? extends java.lang.Enum<?>> fields)
private
SVNWCDbSchema(java.lang.Class<? extends java.lang.Enum<?>> fields, java.lang.Class<? extends java.lang.Enum<?>> indices)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SVNWCDbSchema
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SVNWCDbSchema[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WCROOT
public static final SVNWCDbSchema WCROOT
-
LOCK
public static final SVNWCDbSchema LOCK
-
REPOSITORY
public static final SVNWCDbSchema REPOSITORY
-
ACTUAL_NODE
public static final SVNWCDbSchema ACTUAL_NODE
-
WC_LOCK
public static final SVNWCDbSchema WC_LOCK
-
PRISTINE
public static final SVNWCDbSchema PRISTINE
-
NODES
public static final SVNWCDbSchema NODES
-
WORK_QUEUE
public static final SVNWCDbSchema WORK_QUEUE
-
EXTERNALS
public static final SVNWCDbSchema EXTERNALS
-
TARGETS_LIST
public static final SVNWCDbSchema TARGETS_LIST
-
NODE_PROPS_CACHE
public static final SVNWCDbSchema NODE_PROPS_CACHE
-
DELETE_LIST
public static final SVNWCDbSchema DELETE_LIST
-
REVERT_LIST
public static final SVNWCDbSchema REVERT_LIST
-
CHANGELIST_LIST
public static final SVNWCDbSchema CHANGELIST_LIST
-
BASE_NODE
public static final SVNWCDbSchema BASE_NODE
-
WORKING_NODE
public static final SVNWCDbSchema WORKING_NODE
-
UPDATE_MOVE_LIST
public static final SVNWCDbSchema UPDATE_MOVE_LIST
-
-
Method Detail
-
values
public static SVNWCDbSchema[] 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 c : SVNWCDbSchema.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 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
-
-