public enum SearchFieldTypeEnum extends Enum<SearchFieldTypeEnum>
Enumeration search field types
Copyright 2010 (C) by Martin Ganserer
| Enum Constant and Description |
|---|
NOT_SEARCHABLE |
STANDARD |
| Modifier and Type | Method and Description |
|---|---|
static SearchFieldTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SearchFieldTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchFieldTypeEnum STANDARD
public static final SearchFieldTypeEnum NOT_SEARCHABLE
public static SearchFieldTypeEnum[] values()
for (SearchFieldTypeEnum c : SearchFieldTypeEnum.values()) System.out.println(c);
public static SearchFieldTypeEnum 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 © 2018. All rights reserved.