public static enum SVNSqlJetDb.Mode extends Enum<SVNSqlJetDb.Mode>
Enum Constant and Description |
---|
ReadOnly
open the database read-only
|
ReadWrite
open the database read-write
|
RWCreate
open/create the database read-write
|
Modifier and Type | Method and Description |
---|---|
static SVNSqlJetDb.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SVNSqlJetDb.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SVNSqlJetDb.Mode ReadOnly
public static final SVNSqlJetDb.Mode ReadWrite
public static final SVNSqlJetDb.Mode RWCreate
public static SVNSqlJetDb.Mode[] values()
for (SVNSqlJetDb.Mode c : SVNSqlJetDb.Mode.values()) System.out.println(c);
public static SVNSqlJetDb.Mode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2019. All rights reserved.