public static enum OracleDirectory.DirectoryType extends Enum<OracleDirectory.DirectoryType>
Enum Constant and Description |
---|
FS_DIRECTORY
This contanst denotes a File System Directory used to store Apache Lucene text indexes
|
ORACLE_JDBC_DIRECTORY
This contanst denotes a JDBC Directory used to store Apache Lucene text indexes
|
Modifier and Type | Method and Description |
---|---|
static OracleDirectory.DirectoryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OracleDirectory.DirectoryType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final OracleDirectory.DirectoryType FS_DIRECTORY
public static final OracleDirectory.DirectoryType ORACLE_JDBC_DIRECTORY
public static OracleDirectory.DirectoryType 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 nullpublic static OracleDirectory.DirectoryType[] values()
for (OracleDirectory.DirectoryType c : OracleDirectory.DirectoryType.values()) System.out.println(c);
Copyright © 2017 Oracle and/or its afflilates. All Rights Reserved.