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

com.google.api.client.testing.json.MockJsonGenerator Maven / Gradle / Ivy

Go to download

Google HTTP Client Library for Java. Functionality that works on all supported Java platforms, including Java 5 (or higher) desktop (SE) and web (EE), Android, and Google App Engine.

There is a newer version: 1.44.1
Show newest version
/*
 * Copyright (c) 2013 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
 * in compliance with the License. You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under the License
 * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 * or implied. See the License for the specific language governing permissions and limitations under
 * the License.
 */

package com.google.api.client.testing.json;

import com.google.api.client.json.JsonFactory;
import com.google.api.client.json.JsonGenerator;
import com.google.api.client.util.Beta;

import java.io.IOException;
import java.math.BigDecimal;
import java.math.BigInteger;

/**
 * {@link Beta} 
* Mock for {@link JsonGenerator}. * *

* Implementation is thread-safe. *

* * @author [email protected] (Ravi Mistry) * @since 1.15 (since 1.11 as com.google.api.client.testing.http.json.MockJsonGenerator) */ @Beta public class MockJsonGenerator extends JsonGenerator { private final JsonFactory factory; MockJsonGenerator(JsonFactory factory) { this.factory = factory; } @Override public JsonFactory getFactory() { return factory; } @Override public void flush() throws IOException { } @Override public void close() throws IOException { } @Override public void writeStartArray() throws IOException { } @Override public void writeEndArray() throws IOException { } @Override public void writeStartObject() throws IOException { } @Override public void writeEndObject() throws IOException { } @Override public void writeFieldName(String name) throws IOException { } @Override public void writeNull() throws IOException { } @Override public void writeString(String value) throws IOException { } @Override public void writeBoolean(boolean state) throws IOException { } @Override public void writeNumber(int v) throws IOException { } @Override public void writeNumber(long v) throws IOException { } @Override public void writeNumber(BigInteger v) throws IOException { } @Override public void writeNumber(float v) throws IOException { } @Override public void writeNumber(double v) throws IOException { } @Override public void writeNumber(BigDecimal v) throws IOException { } @Override public void writeNumber(String encodedValue) throws IOException { } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy