public static enum SvnClientAdapterResource.Mode extends java.lang.Enum<SvnClientAdapterResource.Mode>
Enum Constant | Description |
---|---|
DETECT |
Auto detect at first use.
|
JAVAHL |
Use JavaHL
|
NONE |
None found.
|
SVNKIT |
Use the SVNKit Subversion Client library
|
Modifier and Type | Method | Description |
---|---|---|
static SvnClientAdapterResource.Mode |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static SvnClientAdapterResource.Mode[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SvnClientAdapterResource.Mode DETECT
public static final SvnClientAdapterResource.Mode JAVAHL
public static final SvnClientAdapterResource.Mode SVNKIT
public static final SvnClientAdapterResource.Mode NONE
public static SvnClientAdapterResource.Mode[] values()
for (SvnClientAdapterResource.Mode c : SvnClientAdapterResource.Mode.values()) System.out.println(c);
public static SvnClientAdapterResource.Mode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null