public enum TdbFieldFetchType extends java.lang.Enum<TdbFieldFetchType>
Enum Constant and Description |
---|
EntireValue
Fetch the entire contents of the field.
|
Extract
Extract a text fragment of specified size from the start of the field.
|
ExtractMergeParts
Extract a text fragment of specified size from the start of the field.
|
Focus
Fetch a fragment of the field value focused on existing search hits.
|
FocusMergeParts
Fetch a fragment of the field value focused on existing search hits.
|
FocusOrExtract
Fetch a fragment of the field value focused on existing search hits.
|
FocusOrExtractMergeParts
Fetch a fragment of the field value focused on existing search hits.
|
NoValue
Do not fetch the contents of the field.
|
Summary
Summarize the contents of the TEXT field.
|
Modifier and Type | Method and Description |
---|---|
static TdbFieldFetchType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TdbFieldFetchType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TdbFieldFetchType EntireValue
public static final TdbFieldFetchType NoValue
public static final TdbFieldFetchType Focus
public static final TdbFieldFetchType Extract
public static final TdbFieldFetchType FocusOrExtract
public static final TdbFieldFetchType Summary
public static final TdbFieldFetchType FocusMergeParts
public static final TdbFieldFetchType ExtractMergeParts
public static final TdbFieldFetchType FocusOrExtractMergeParts
public static TdbFieldFetchType[] values()
for (TdbFieldFetchType c : TdbFieldFetchType.values()) System.out.println(c);
public static TdbFieldFetchType 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