Class CloseIndexResponse.IndexResult
- java.lang.Object
-
- org.elasticsearch.action.admin.indices.close.CloseIndexResponse.IndexResult
-
- All Implemented Interfaces:
Writeable,ToXContent,ToXContentFragment
- Enclosing class:
- CloseIndexResponse
public static class CloseIndexResponse.IndexResult extends Object implements Writeable, ToXContentFragment
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V>
-
-
Field Summary
-
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
-
Constructor Summary
Constructors Constructor Description IndexResult(Index index)IndexResult(Index index, Exception failure)IndexResult(Index index, CloseIndexResponse.ShardResult[] shards)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ExceptiongetException()IndexgetIndex()CloseIndexResponse.ShardResult[]getShards()booleanhasFailures()StringtoString()XContentBuildertoXContent(XContentBuilder builder, ToXContent.Params params)voidwriteTo(StreamOutput out)Write this into the StreamOutput.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentFragment
isFragment
-
-
-
-
Constructor Detail
-
IndexResult
public IndexResult(Index index)
-
IndexResult
public IndexResult(Index index, CloseIndexResponse.ShardResult[] shards)
-
-
Method Detail
-
writeTo
public void writeTo(StreamOutput out) throws IOException
Description copied from interface:WriteableWrite this into the StreamOutput.- Specified by:
writeToin interfaceWriteable- Throws:
IOException
-
getIndex
public Index getIndex()
-
getException
public Exception getException()
-
getShards
public CloseIndexResponse.ShardResult[] getShards()
-
hasFailures
public boolean hasFailures()
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws IOException
- Specified by:
toXContentin interfaceToXContent- Throws:
IOException
-
-