Enum ClientLanguage
- java.lang.Object
-
- java.lang.Enum<ClientLanguage>
-
- software.aws.awsprototypingsdk.openapigateway.ClientLanguage
-
- All Implemented Interfaces:
Serializable,Comparable<ClientLanguage>
@Generated(value="jsii-pacmak/1.66.0 (build 3c9512b)", date="2022-09-02T02:19:45.653Z") @Stability(Experimental) public enum ClientLanguage extends Enum<ClientLanguage>
(experimental) Supported languages for client generation.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description JAVAPYTHONTYPESCRIPT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ClientLanguagevalueOf(String name)Returns the enum constant of this type with the specified name.static ClientLanguage[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TYPESCRIPT
@Stability(Experimental) public static final ClientLanguage TYPESCRIPT
-
PYTHON
@Stability(Experimental) public static final ClientLanguage PYTHON
-
JAVA
@Stability(Experimental) public static final ClientLanguage JAVA
-
-
Method Detail
-
values
public static ClientLanguage[] 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 (ClientLanguage c : ClientLanguage.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ClientLanguage 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
-
-