mirror of
https://github.com/github/codeql.git
synced 2026-08-03 17:03:02 +02:00
38 lines
1.4 KiB
Java
Generated
38 lines
1.4 KiB
Java
Generated
// Generated automatically from com.google.gson.JsonElement for testing purposes
|
|
|
|
package com.google.gson;
|
|
|
|
import com.google.gson.JsonArray;
|
|
import com.google.gson.JsonNull;
|
|
import com.google.gson.JsonObject;
|
|
import com.google.gson.JsonPrimitive;
|
|
import java.math.BigDecimal;
|
|
import java.math.BigInteger;
|
|
|
|
abstract public class JsonElement
|
|
{
|
|
public BigDecimal getAsBigDecimal(){ return null; }
|
|
public BigInteger getAsBigInteger(){ return null; }
|
|
public JsonArray getAsJsonArray(){ return null; }
|
|
public JsonElement(){}
|
|
public JsonNull getAsJsonNull(){ return null; }
|
|
public JsonObject getAsJsonObject(){ return null; }
|
|
public JsonPrimitive getAsJsonPrimitive(){ return null; }
|
|
public Number getAsNumber(){ return null; }
|
|
public String getAsString(){ return null; }
|
|
public String toString(){ return null; }
|
|
public abstract JsonElement deepCopy();
|
|
public boolean getAsBoolean(){ return false; }
|
|
public boolean isJsonArray(){ return false; }
|
|
public boolean isJsonNull(){ return false; }
|
|
public boolean isJsonObject(){ return false; }
|
|
public boolean isJsonPrimitive(){ return false; }
|
|
public byte getAsByte(){ return 0; }
|
|
public char getAsCharacter(){ return '0'; }
|
|
public double getAsDouble(){ return 0; }
|
|
public float getAsFloat(){ return 0; }
|
|
public int getAsInt(){ return 0; }
|
|
public long getAsLong(){ return 0; }
|
|
public short getAsShort(){ return 0; }
|
|
}
|