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

com.yahoo.elide.test.jsonapi.elements.PatchSet Maven / Gradle / Ivy

/*
 * Copyright 2019, Yahoo Inc.
 * Licensed under the Apache License, Version 2.0
 * See LICENSE file in project root for terms.
 */

package com.yahoo.elide.test.jsonapi.elements;

import com.google.gson.Gson;
import com.google.gson.GsonBuilder;

import java.util.ArrayList;
import java.util.Arrays;

/**
 * Pat Set.
 */
public class PatchSet extends ArrayList {

   static private final Gson GSON_INSTANCE = new GsonBuilder()
           .serializeNulls().create();

   /**
    * Patch Set.
    *
    * @param patchOperations the set of patch operations
    */
   public PatchSet(PatchOperation... patchOperations) {
      this.addAll(Arrays.asList(patchOperations));
   }

   /**
    * To json string.
    *
    * @return the string
    */
   public String toJSON() {
      return GSON_INSTANCE.toJson(this);
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy