summaryrefslogtreecommitdiff
path: root/core/src/main/java/org/elasticsearch/common/xcontent/XContentType.java
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/main/java/org/elasticsearch/common/xcontent/XContentType.java')
-rw-r--r--core/src/main/java/org/elasticsearch/common/xcontent/XContentType.java8
1 files changed, 5 insertions, 3 deletions
diff --git a/core/src/main/java/org/elasticsearch/common/xcontent/XContentType.java b/core/src/main/java/org/elasticsearch/common/xcontent/XContentType.java
index 296f9d2aed..ddd736e0d0 100644
--- a/core/src/main/java/org/elasticsearch/common/xcontent/XContentType.java
+++ b/core/src/main/java/org/elasticsearch/common/xcontent/XContentType.java
@@ -21,6 +21,7 @@ package org.elasticsearch.common.xcontent;
import org.elasticsearch.common.io.stream.StreamInput;
import org.elasticsearch.common.io.stream.StreamOutput;
+import org.elasticsearch.common.io.stream.Writeable;
import org.elasticsearch.common.xcontent.cbor.CborXContent;
import org.elasticsearch.common.xcontent.json.JsonXContent;
import org.elasticsearch.common.xcontent.smile.SmileXContent;
@@ -32,7 +33,7 @@ import java.util.Locale;
/**
* The content type of {@link org.elasticsearch.common.xcontent.XContent}.
*/
-public enum XContentType {
+public enum XContentType implements Writeable {
/**
* A JSON based content type.
@@ -168,7 +169,8 @@ public enum XContentType {
throw new IllegalStateException("Unknown XContentType with index [" + index + "]");
}
- public static void writeTo(XContentType contentType, StreamOutput out) throws IOException {
- out.writeVInt(contentType.index);
+ @Override
+ public void writeTo(StreamOutput out) throws IOException {
+ out.writeVInt(index);
}
}