public static enum FieldDescriptor.Store extends Enum<FieldDescriptor.Store>
| Enum Constant and Description | 
|---|
DOC_VALUES  | 
NO  | 
SORTED_DOC_VALUES  | 
YES  | 
| Modifier and Type | Method and Description | 
|---|---|
static FieldDescriptor.Store | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static FieldDescriptor.Store[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final FieldDescriptor.Store NO
public static final FieldDescriptor.Store YES
public static final FieldDescriptor.Store DOC_VALUES
public static final FieldDescriptor.Store SORTED_DOC_VALUES
public static FieldDescriptor.Store[] values()
for (FieldDescriptor.Store c : FieldDescriptor.Store.values()) System.out.println(c);
public static FieldDescriptor.Store 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 nullCopyright © 2003–2022 Atlassian. All rights reserved.