Class EvaluateExpressionResult
- java.lang.Object
-
- com.amazonaws.services.datapipeline.model.EvaluateExpressionResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class EvaluateExpressionResult extends Object implements Serializable, Cloneable
Contains the output of EvaluateExpression.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description EvaluateExpressionResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description EvaluateExpressionResult
clone()
boolean
equals(Object obj)
String
getEvaluatedExpression()
The evaluated expression.int
hashCode()
void
setEvaluatedExpression(String evaluatedExpression)
The evaluated expression.String
toString()
Returns a string representation of this object; useful for testing and debugging.EvaluateExpressionResult
withEvaluatedExpression(String evaluatedExpression)
The evaluated expression.
-
-
-
Method Detail
-
setEvaluatedExpression
public void setEvaluatedExpression(String evaluatedExpression)
The evaluated expression.
- Parameters:
evaluatedExpression
- The evaluated expression.
-
getEvaluatedExpression
public String getEvaluatedExpression()
The evaluated expression.
- Returns:
- The evaluated expression.
-
withEvaluatedExpression
public EvaluateExpressionResult withEvaluatedExpression(String evaluatedExpression)
The evaluated expression.
- Parameters:
evaluatedExpression
- The evaluated expression.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public EvaluateExpressionResult clone()
-
-