Package io.apicurio.registry.storage.dto
Enum SearchFilterType
- java.lang.Object
-
- java.lang.Enum<SearchFilterType>
-
- io.apicurio.registry.storage.dto.SearchFilterType
-
- All Implemented Interfaces:
Serializable
,Comparable<SearchFilterType>
public enum SearchFilterType extends Enum<SearchFilterType>
- Author:
- eric.wittmann@gmail.com
-
-
Enum Constant Summary
Enum Constants Enum Constant Description canonicalHash
contentHash
description
everything
group
labels
name
properties
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SearchFilterType
valueOf(String name)
Returns the enum constant of this type with the specified name.static SearchFilterType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
group
public static final SearchFilterType group
-
name
public static final SearchFilterType name
-
description
public static final SearchFilterType description
-
labels
public static final SearchFilterType labels
-
properties
public static final SearchFilterType properties
-
contentHash
public static final SearchFilterType contentHash
-
canonicalHash
public static final SearchFilterType canonicalHash
-
everything
public static final SearchFilterType everything
-
-
Method Detail
-
values
public static SearchFilterType[] 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 (SearchFilterType c : SearchFilterType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SearchFilterType 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
-
-