Class KotlinDslParamCompound.Option
- java.lang.Object
-
- jetbrains.buildServer.configs.dsl.extensions.param.KotlinDslParamCompound.Option
-
- Enclosing class:
- KotlinDslParamCompound
public static class KotlinDslParamCompound.Option extends Object
-
-
Constructor Summary
Constructors Constructor Description Option(String dslName, String xmlValue, List<KotlinDslParam> params, DeprecatedInfo deprecatedInfo, String description)
Option(String dslName, String xmlValue, List<KotlinDslParam> params, DeprecatedInfo deprecatedInfo, String description, Map<String,String> allAttributes)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,String>
getAttributes()
DeprecatedInfo
getDeprecatedInfo()
String
getDescription()
String
getDslName()
List<KotlinDslParam>
getParams()
String
getXmlValue()
Returns xml value generated by option or null if option doesn't generate a value itself and relies on its nested parameters to generate itboolean
isDeprecated()
-
-
-
Constructor Detail
-
Option
public Option(@NotNull String dslName, @Nullable String xmlValue, @NotNull List<KotlinDslParam> params, @Nullable DeprecatedInfo deprecatedInfo, @Nullable String description)
-
Option
public Option(@NotNull String dslName, @Nullable String xmlValue, @NotNull List<KotlinDslParam> params, @Nullable DeprecatedInfo deprecatedInfo, @Nullable String description, @NotNull Map<String,String> allAttributes)
-
-
Method Detail
-
getDslName
@NotNull public String getDslName()
-
getXmlValue
@Nullable public String getXmlValue()
Returns xml value generated by option or null if option doesn't generate a value itself and relies on its nested parameters to generate it- Returns:
- see above
-
getParams
@NotNull public List<KotlinDslParam> getParams()
-
getDeprecatedInfo
@Nullable public DeprecatedInfo getDeprecatedInfo()
-
isDeprecated
public boolean isDeprecated()
-
getDescription
@Nullable public String getDescription()
-
-