All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.searchbox.core.DocumentResult Maven / Gradle / Ivy

package io.searchbox.core;

import com.google.gson.Gson;
import com.google.gson.JsonElement;
import io.searchbox.client.JestResult;

/**
 * @author Bartosz Polnik
 */
public class DocumentResult extends JestResult {
    public DocumentResult(Gson gson) {
        super(gson);
    }

    public String getIndex() {
        return getAsString(jsonObject.get("_index"));
    }

    public String getType() {
        return getAsString(jsonObject.get("_type"));
    }

    public String getId() {
        return getAsString(jsonObject.get("_id"));
    }

    public Long getVersion() {
        return getAsLong(jsonObject.get("_version"));
    }

    private String getAsString(JsonElement jsonElement) {
        if(jsonElement == null) {
            return null;
        } else {
            return jsonElement.getAsString();
        }
    }

    private Long getAsLong(JsonElement jsonElement) {
        if(jsonElement == null) {
            return null;
        } else {
            return jsonElement.getAsLong();
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy