
com.aliyun.odps.data.JsonValue Maven / Gradle / Ivy
package com.aliyun.odps.data;
public interface JsonValue {
int size();
boolean isJsonPrimitive();
boolean isJsonArray();
boolean isJsonObject();
boolean isJsonNull();
JsonValue get(int index);
JsonValue get(String filedName);
Boolean getAsBoolean();
Number getAsNumber();
String getAsString();
String toString();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy