public enum SearchOver extends Enum<SearchOver>
| Enum Constant and Description |
|---|
description |
everything |
labels |
name |
| Modifier and Type | Method and Description |
|---|---|
static SearchOver |
fromValue(String value) |
String |
toString() |
String |
value() |
static SearchOver |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SearchOver[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchOver everything
public static final SearchOver name
public static final SearchOver description
public static final SearchOver labels
public static SearchOver[] values()
for (SearchOver c : SearchOver.values()) System.out.println(c);
public static SearchOver 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 toString()
toString in class Enum<SearchOver>public String value()
public static SearchOver fromValue(String value)
Copyright © 2020 Red Hat. All rights reserved.