Enum Options.IndexFetchMethod
- java.lang.Object
-
- java.lang.Enum<Options.IndexFetchMethod>
-
- com.apple.foundationdb.relational.api.Options.IndexFetchMethod
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<Options.IndexFetchMethod>
- Enclosing class:
- Options
public static enum Options.IndexFetchMethod extends java.lang.Enum<Options.IndexFetchMethod>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SCAN_AND_FETCH
USE_REMOTE_FETCH
USE_REMOTE_FETCH_WITH_FALLBACK
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Options.IndexFetchMethod
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static Options.IndexFetchMethod[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SCAN_AND_FETCH
public static final Options.IndexFetchMethod SCAN_AND_FETCH
-
USE_REMOTE_FETCH
public static final Options.IndexFetchMethod USE_REMOTE_FETCH
-
USE_REMOTE_FETCH_WITH_FALLBACK
public static final Options.IndexFetchMethod USE_REMOTE_FETCH_WITH_FALLBACK
-
-
Method Detail
-
values
public static Options.IndexFetchMethod[] 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 (Options.IndexFetchMethod c : Options.IndexFetchMethod.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Options.IndexFetchMethod 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
-
-