Enum SearchOver
- java.lang.Object
-
- java.lang.Enum<SearchOver>
-
- io.apicurio.registry.rest.v1.beans.SearchOver
-
- All Implemented Interfaces:
Serializable
,Comparable<SearchOver>
public enum SearchOver extends Enum<SearchOver>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description description
everything
labels
name
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
everything
public static final SearchOver everything
-
name
public static final SearchOver name
-
description
public static final SearchOver description
-
labels
public static final SearchOver labels
-
-
Method Detail
-
values
public static SearchOver[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (SearchOver c : SearchOver.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SearchOver valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
public String toString()
- Overrides:
toString
in classEnum<SearchOver>
-
value
public String value()
-
fromValue
public static SearchOver fromValue(String value)
-
-