Enum StudioComponentType
- java.lang.Object
-
- java.lang.Enum<StudioComponentType>
-
- software.amazon.awssdk.services.nimble.model.StudioComponentType
-
- All Implemented Interfaces:
Serializable,Comparable<StudioComponentType>
@Generated("software.amazon.awssdk:codegen") public enum StudioComponentType extends Enum<StudioComponentType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVE_DIRECTORYCOMPUTE_FARMCUSTOMLICENSE_SERVICESHARED_FILE_SYSTEMUNKNOWN_TO_SDK_VERSION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static StudioComponentTypefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<StudioComponentType>knownValues()StringtoString()static StudioComponentTypevalueOf(String name)Returns the enum constant of this type with the specified name.static StudioComponentType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ACTIVE_DIRECTORY
public static final StudioComponentType ACTIVE_DIRECTORY
-
SHARED_FILE_SYSTEM
public static final StudioComponentType SHARED_FILE_SYSTEM
-
COMPUTE_FARM
public static final StudioComponentType COMPUTE_FARM
-
LICENSE_SERVICE
public static final StudioComponentType LICENSE_SERVICE
-
CUSTOM
public static final StudioComponentType CUSTOM
-
UNKNOWN_TO_SDK_VERSION
public static final StudioComponentType UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static StudioComponentType[] 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 (StudioComponentType c : StudioComponentType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StudioComponentType 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:
toStringin classEnum<StudioComponentType>
-
fromValue
public static StudioComponentType fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- StudioComponentType corresponding to the value
-
knownValues
public static Set<StudioComponentType> knownValues()
Use this in place ofvalues()to return aSetof all values known to the SDK. This will return all known enum values exceptUNKNOWN_TO_SDK_VERSION.- Returns:
- a
Setof knownStudioComponentTypes
-
-