Enum RecommendationRenderType
- java.lang.Object
-
- java.lang.Enum<RecommendationRenderType>
-
- io.datahubproject.openapi.generated.RecommendationRenderType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<RecommendationRenderType>
public enum RecommendationRenderType extends java.lang.Enum<RecommendationRenderType>
Enum that defines how the modules should be rendered. There should be two frontend implementation of large and small modules per type.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DOMAIN_SEARCH_LISTENTITY_NAME_LISTGLOSSARY_TERM_SEARCH_LISTPLATFORM_SEARCH_LISTSEARCH_QUERY_LISTTAG_SEARCH_LIST
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RecommendationRenderTypefromValue(java.lang.String text)java.lang.StringtoString()static RecommendationRenderTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static RecommendationRenderType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ENTITY_NAME_LIST
public static final RecommendationRenderType ENTITY_NAME_LIST
-
PLATFORM_SEARCH_LIST
public static final RecommendationRenderType PLATFORM_SEARCH_LIST
-
TAG_SEARCH_LIST
public static final RecommendationRenderType TAG_SEARCH_LIST
-
GLOSSARY_TERM_SEARCH_LIST
public static final RecommendationRenderType GLOSSARY_TERM_SEARCH_LIST
-
SEARCH_QUERY_LIST
public static final RecommendationRenderType SEARCH_QUERY_LIST
-
DOMAIN_SEARCH_LIST
public static final RecommendationRenderType DOMAIN_SEARCH_LIST
-
-
Method Detail
-
values
public static RecommendationRenderType[] 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 (RecommendationRenderType c : RecommendationRenderType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RecommendationRenderType valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<RecommendationRenderType>
-
fromValue
public static RecommendationRenderType fromValue(java.lang.String text)
-
-