Package org.sonar.iac.terraform.plugin
Enum TerraformProviders.Provider.Identifier
- java.lang.Object
-
- java.lang.Enum<TerraformProviders.Provider.Identifier>
-
- org.sonar.iac.terraform.plugin.TerraformProviders.Provider.Identifier
-
- All Implemented Interfaces:
Serializable,Comparable<TerraformProviders.Provider.Identifier>
- Enclosing class:
- TerraformProviders.Provider
public static enum TerraformProviders.Provider.Identifier extends Enum<TerraformProviders.Provider.Identifier>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TerraformProviders.Provider.IdentifiervalueOf(String name)Returns the enum constant of this type with the specified name.static TerraformProviders.Provider.Identifier[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AWS
public static final TerraformProviders.Provider.Identifier AWS
-
AZURE
public static final TerraformProviders.Provider.Identifier AZURE
-
-
Field Detail
-
key
public final String key
-
-
Method Detail
-
values
public static TerraformProviders.Provider.Identifier[] 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 (TerraformProviders.Provider.Identifier c : TerraformProviders.Provider.Identifier.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TerraformProviders.Provider.Identifier 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
-
-