Class DescribeExpressionsResult
- java.lang.Object
-
- com.amazonaws.services.cloudsearchv2.model.DescribeExpressionsResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DescribeExpressionsResult extends Object implements Serializable, Cloneable
The result of a
DescribeExpressions
request. Contains the expressions configured for the domain specified in the request.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeExpressionsResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeExpressionsResult
clone()
boolean
equals(Object obj)
List<ExpressionStatus>
getExpressions()
The expressions configured for the domain.int
hashCode()
void
setExpressions(Collection<ExpressionStatus> expressions)
The expressions configured for the domain.String
toString()
Returns a string representation of this object; useful for testing and debugging.DescribeExpressionsResult
withExpressions(ExpressionStatus... expressions)
The expressions configured for the domain.DescribeExpressionsResult
withExpressions(Collection<ExpressionStatus> expressions)
The expressions configured for the domain.
-
-
-
Method Detail
-
getExpressions
public List<ExpressionStatus> getExpressions()
The expressions configured for the domain.
- Returns:
- The expressions configured for the domain.
-
setExpressions
public void setExpressions(Collection<ExpressionStatus> expressions)
The expressions configured for the domain.
- Parameters:
expressions
- The expressions configured for the domain.
-
withExpressions
public DescribeExpressionsResult withExpressions(ExpressionStatus... expressions)
The expressions configured for the domain.
NOTE: This method appends the values to the existing list (if any). Use
setExpressions(java.util.Collection)
orwithExpressions(java.util.Collection)
if you want to override the existing values.- Parameters:
expressions
- The expressions configured for the domain.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withExpressions
public DescribeExpressionsResult withExpressions(Collection<ExpressionStatus> expressions)
The expressions configured for the domain.
- Parameters:
expressions
- The expressions configured for the domain.- 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 DescribeExpressionsResult clone()
-
-