Package org.elasticsearch.client.ml
Class GetCategoriesResponse
- java.lang.Object
-
- org.elasticsearch.client.ml.AbstractResultResponse<CategoryDefinition>
-
- org.elasticsearch.client.ml.GetCategoriesResponse
-
- All Implemented Interfaces:
ToXContent,ToXContentObject
public class GetCategoriesResponse extends AbstractResultResponse<CategoryDefinition>
A response containing the requested categories
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
-
-
Field Summary
Fields Modifier and Type Field Description static ParseFieldCATEGORIESstatic ConstructingObjectParser<GetCategoriesResponse,Void>PARSER-
Fields inherited from class org.elasticsearch.client.ml.AbstractResultResponse
count, COUNT, results
-
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description List<CategoryDefinition>categories()The retrieved categoriesbooleanequals(Object obj)static GetCategoriesResponsefromXContent(XContentParser parser)inthashCode()-
Methods inherited from class org.elasticsearch.client.ml.AbstractResultResponse
count, toXContent
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentObject
isFragment
-
-
-
-
Field Detail
-
CATEGORIES
public static final ParseField CATEGORIES
-
PARSER
public static final ConstructingObjectParser<GetCategoriesResponse,Void> PARSER
-
-
Method Detail
-
fromXContent
public static GetCategoriesResponse fromXContent(XContentParser parser) throws IOException
- Throws:
IOException
-
categories
public List<CategoryDefinition> categories()
The retrieved categories- Returns:
- the retrieved categories
-
-