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

io.k8s.apimachinery.pkg.apis.meta.v1.Patch Maven / Gradle / Ivy

package io.k8s.apimachinery.pkg.apis.meta.v1;

import java.lang.Object;
import java.lang.String;
import java.lang.SuppressWarnings;
import java.util.LinkedHashMap;

@SuppressWarnings("serial")
public class Patch extends LinkedHashMap {
  public Patch kv(String key, Object value) {
    put(key, value);
    return this;
  }

  public static Patch patch() {
    return new Patch();
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy