public enum QueryEngineChunkHandlerEnum extends Enum<QueryEngineChunkHandlerEnum>
IChunkHandler
implementations in
support of the QueryEngineChunkHandlerQueryHint
.(Vector query engine on the native heap)
Enum Constant and Description |
---|
Managed
Use the managed object heap (this is the historical behavior).
|
Native
Use the native heap.
|
Modifier and Type | Method and Description |
---|---|
static QueryEngineChunkHandlerEnum |
valueOf(Class<? extends IChunkHandler> cls)
Return the type safe enumeration corresponding to a specific
implementation class.
|
static QueryEngineChunkHandlerEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryEngineChunkHandlerEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryEngineChunkHandlerEnum Managed
public static final QueryEngineChunkHandlerEnum Native
public static QueryEngineChunkHandlerEnum[] values()
for (QueryEngineChunkHandlerEnum c : QueryEngineChunkHandlerEnum.values()) System.out.println(c);
public static QueryEngineChunkHandlerEnum 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 QueryEngineChunkHandlerEnum valueOf(Class<? extends IChunkHandler> cls)
cls
- The IChunkHandler
implementation class.Copyright © 2006–2019 SYSTAP, LLC DBA Blazegraph. All rights reserved.