public enum EnumCapabilityQuery extends Enum<EnumCapabilityQuery>
Java class for enumCapabilityQuery.
The following schema fragment specifies the expected content contained within this class.
 <simpleType name="enumCapabilityQuery">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="none"/>
     <enumeration value="metadataonly"/>
     <enumeration value="fulltextonly"/>
     <enumeration value="bothseparate"/>
     <enumeration value="bothcombined"/>
   </restriction>
 </simpleType>
 | Enum Constant and Description | 
|---|
BOTHCOMBINED  | 
BOTHSEPARATE  | 
FULLTEXTONLY  | 
METADATAONLY  | 
NONE  | 
| Modifier and Type | Method and Description | 
|---|---|
static EnumCapabilityQuery | 
fromValue(String v)  | 
String | 
value()  | 
static EnumCapabilityQuery | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static EnumCapabilityQuery[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final EnumCapabilityQuery NONE
public static final EnumCapabilityQuery METADATAONLY
public static final EnumCapabilityQuery FULLTEXTONLY
public static final EnumCapabilityQuery BOTHSEPARATE
public static final EnumCapabilityQuery BOTHCOMBINED
public static EnumCapabilityQuery[] values()
for (EnumCapabilityQuery c : EnumCapabilityQuery.values()) System.out.println(c);
public static EnumCapabilityQuery 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 EnumCapabilityQuery fromValue(String v)
Copyright © 2009-2014 The Apache Software Foundation. All Rights Reserved.