public enum CapabilityQuery extends Enum<CapabilityQuery>
Enum Constant and Description |
---|
BOTHCOMBINED |
BOTHSEPARATE |
FULLTEXTONLY |
METADATAONLY |
NONE |
Modifier and Type | Method and Description |
---|---|
static CapabilityQuery |
fromValue(String v) |
String |
value() |
static CapabilityQuery |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CapabilityQuery[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CapabilityQuery NONE
public static final CapabilityQuery METADATAONLY
public static final CapabilityQuery FULLTEXTONLY
public static final CapabilityQuery BOTHSEPARATE
public static final CapabilityQuery BOTHCOMBINED
public static CapabilityQuery[] values()
for (CapabilityQuery c : CapabilityQuery.values()) System.out.println(c);
public static CapabilityQuery 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 String value()
public static CapabilityQuery fromValue(String v)
Copyright © 2009–2017 The Apache Software Foundation. All rights reserved.