Class DefineExpressionResult
- java.lang.Object
-
- com.amazonaws.services.cloudsearchv2.model.DefineExpressionResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DefineExpressionResult extends Object implements Serializable, Cloneable
The result of a
DefineExpression
request. Contains the status of the newly-configured expression.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DefineExpressionResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DefineExpressionResult
clone()
boolean
equals(Object obj)
ExpressionStatus
getExpression()
int
hashCode()
void
setExpression(ExpressionStatus expression)
String
toString()
Returns a string representation of this object; useful for testing and debugging.DefineExpressionResult
withExpression(ExpressionStatus expression)
-
-
-
Method Detail
-
setExpression
public void setExpression(ExpressionStatus expression)
- Parameters:
expression
-
-
getExpression
public ExpressionStatus getExpression()
- Returns:
-
withExpression
public DefineExpressionResult withExpression(ExpressionStatus expression)
- Parameters:
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 DefineExpressionResult clone()
-
-