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