Enum SearchTypesResultItem.Type
- java.lang.Object
-
- java.lang.Enum<SearchTypesResultItem.Type>
-
- software.amazon.awssdk.services.datazone.model.SearchTypesResultItem.Type
-
- All Implemented Interfaces:
Serializable,Comparable<SearchTypesResultItem.Type>
- Enclosing class:
- SearchTypesResultItem
public static enum SearchTypesResultItem.Type extends Enum<SearchTypesResultItem.Type>
- See Also:
SearchTypesResultItem.type()
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASSET_TYPE_ITEMFORM_TYPE_ITEMLINEAGE_NODE_TYPE_ITEMUNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SearchTypesResultItem.TypevalueOf(String name)Returns the enum constant of this type with the specified name.static SearchTypesResultItem.Type[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ASSET_TYPE_ITEM
public static final SearchTypesResultItem.Type ASSET_TYPE_ITEM
-
FORM_TYPE_ITEM
public static final SearchTypesResultItem.Type FORM_TYPE_ITEM
-
LINEAGE_NODE_TYPE_ITEM
public static final SearchTypesResultItem.Type LINEAGE_NODE_TYPE_ITEM
-
UNKNOWN_TO_SDK_VERSION
public static final SearchTypesResultItem.Type UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static SearchTypesResultItem.Type[] 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 (SearchTypesResultItem.Type c : SearchTypesResultItem.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SearchTypesResultItem.Type 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
-
-