Class DescribeAnalysisSchemesResult
- java.lang.Object
-
- com.amazonaws.services.cloudsearchv2.model.DescribeAnalysisSchemesResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class DescribeAnalysisSchemesResult extends Object implements Serializable, Cloneable
The result of a
DescribeAnalysisSchemesrequest. Contains the analysis schemes configured for the domain specified in the request.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeAnalysisSchemesResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeAnalysisSchemesResultclone()booleanequals(Object obj)List<AnalysisSchemeStatus>getAnalysisSchemes()The analysis scheme descriptions.inthashCode()voidsetAnalysisSchemes(Collection<AnalysisSchemeStatus> analysisSchemes)The analysis scheme descriptions.StringtoString()Returns a string representation of this object; useful for testing and debugging.DescribeAnalysisSchemesResultwithAnalysisSchemes(AnalysisSchemeStatus... analysisSchemes)The analysis scheme descriptions.DescribeAnalysisSchemesResultwithAnalysisSchemes(Collection<AnalysisSchemeStatus> analysisSchemes)The analysis scheme descriptions.
-
-
-
Method Detail
-
getAnalysisSchemes
public List<AnalysisSchemeStatus> getAnalysisSchemes()
The analysis scheme descriptions.
- Returns:
- The analysis scheme descriptions.
-
setAnalysisSchemes
public void setAnalysisSchemes(Collection<AnalysisSchemeStatus> analysisSchemes)
The analysis scheme descriptions.
- Parameters:
analysisSchemes- The analysis scheme descriptions.
-
withAnalysisSchemes
public DescribeAnalysisSchemesResult withAnalysisSchemes(AnalysisSchemeStatus... analysisSchemes)
The analysis scheme descriptions.
NOTE: This method appends the values to the existing list (if any). Use
setAnalysisSchemes(java.util.Collection)orwithAnalysisSchemes(java.util.Collection)if you want to override the existing values.- Parameters:
analysisSchemes- The analysis scheme descriptions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withAnalysisSchemes
public DescribeAnalysisSchemesResult withAnalysisSchemes(Collection<AnalysisSchemeStatus> analysisSchemes)
The analysis scheme descriptions.
- Parameters:
analysisSchemes- The analysis scheme descriptions.- 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:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public DescribeAnalysisSchemesResult clone()
-
-