Class Expression
- java.lang.Object
-
- com.azure.resourcemanager.datafactory.models.Expression
-
public final class Expression extends Object
Azure Data Factory expression definition.
-
-
Constructor Summary
Constructors Constructor Description Expression()
Creates an instance of Expression class.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
type()
Get the type property: Expression type.void
validate()
Validates the instance.String
value()
Get the value property: Expression value.Expression
withType(String type)
Set the type property: Expression type.Expression
withValue(String value)
Set the value property: Expression value.
-
-
-
Method Detail
-
type
public String type()
Get the type property: Expression type.- Returns:
- the type value.
-
withType
public Expression withType(String type)
Set the type property: Expression type.- Parameters:
type
- the type value to set.- Returns:
- the Expression object itself.
-
value
public String value()
Get the value property: Expression value.- Returns:
- the value value.
-
withValue
public Expression withValue(String value)
Set the value property: Expression value.- Parameters:
value
- the value value to set.- Returns:
- the Expression object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException
- thrown if the instance is not valid.
-
-