Enum ResourceGroupExportTemplateOptions
- java.lang.Object
-
- java.lang.Enum<ResourceGroupExportTemplateOptions>
-
- com.azure.resourcemanager.resources.models.ResourceGroupExportTemplateOptions
-
- All Implemented Interfaces:
Serializable,Comparable<ResourceGroupExportTemplateOptions>
public enum ResourceGroupExportTemplateOptions extends Enum<ResourceGroupExportTemplateOptions>
The export template options.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INCLUDE_BOTHIncludes default parameter values and comments.INCLUDE_COMMENTSIncludes comments.INCLUDE_PARAMETER_DEFAULT_VALUEIncludes default parameter values.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static ResourceGroupExportTemplateOptionsvalueOf(String name)Returns the enum constant of this type with the specified name.static ResourceGroupExportTemplateOptions[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INCLUDE_PARAMETER_DEFAULT_VALUE
public static final ResourceGroupExportTemplateOptions INCLUDE_PARAMETER_DEFAULT_VALUE
Includes default parameter values.
-
INCLUDE_COMMENTS
public static final ResourceGroupExportTemplateOptions INCLUDE_COMMENTS
Includes comments.
-
INCLUDE_BOTH
public static final ResourceGroupExportTemplateOptions INCLUDE_BOTH
Includes default parameter values and comments.
-
-
Method Detail
-
values
public static ResourceGroupExportTemplateOptions[] 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 (ResourceGroupExportTemplateOptions c : ResourceGroupExportTemplateOptions.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ResourceGroupExportTemplateOptions 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<ResourceGroupExportTemplateOptions>
-
-